Skip to content

Commit

Permalink
Merge pull request #342 from anchore/k8s-inventory-1.2
Browse files Browse the repository at this point in the history
feat: bump k8s-inventory version
  • Loading branch information
bradleyjones authored Feb 9, 2024
2 parents 807927f + 794e1df commit 7abf915
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions stable/k8s-inventory/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: k8s-inventory
version: 0.1.0
appVersion: "1.1.1"
version: 0.2.0
appVersion: "1.2.0"
description: A Helm chart for Kubernetes Automated Inventory, which describes which images are in use in a given Kubernetes Cluster
keywords:
- analysis
Expand Down
6 changes: 3 additions & 3 deletions stable/k8s-inventory/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["anchore-k8s-inventory"]
command: ["/anchore-k8s-inventory"]
ports:
- name: http
containerPort: 80
protocol: TCP
livenessProbe:
exec:
command:
- anchore-k8s-inventory
- /anchore-k8s-inventory
- version
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
Expand All @@ -63,7 +63,7 @@ spec:
readinessProbe:
exec:
command:
- anchore-k8s-inventory
- /anchore-k8s-inventory
- version
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
Expand Down
2 changes: 1 addition & 1 deletion stable/k8s-inventory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ replicaCount: 1
image:
pullPolicy: "IfNotPresent"
repository: "anchore/k8s-inventory"
tag: "v1.1.1"
tag: "v1.2.0"

## @param imagePullSecrets secrets where Kubernetes should get the credentials for pulling private images
##
Expand Down

0 comments on commit 7abf915

Please sign in to comment.