Skip to content

Commit

Permalink
Merge pull request #65 from Leaseweb/bump_chart_1_1_1
Browse files Browse the repository at this point in the history
fix(chart): Don't hardcode version in values.yaml
  • Loading branch information
hrak authored Nov 25, 2024
2 parents 853324d + 226e7b3 commit 08e0687
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/cloud-controller-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cloud-controller-manager
description: CloudStack Cloud Controller Manager Helm chart
type: application
version: 1.1.0
version: 1.1.1
appVersion: 1.3.0
sources:
- https://github.com/Leaseweb/cloudstack-kubernetes-provider
Expand Down
2 changes: 1 addition & 1 deletion charts/cloud-controller-manager/templates/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
serviceAccountName: {{ .Values.serviceAccountName }}
containers:
- name: cloudstack-cloud-controller-manager
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
args:
- --v={{ .Values.logVerbosityLevel }}
- --cloud-config=$(CLOUD_CONFIG)
Expand Down
3 changes: 2 additions & 1 deletion charts/cloud-controller-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ commonAnnotations: {}
# Image repository name and tag
image:
repository: "ghcr.io/leaseweb/cloudstack-kubernetes-provider"
tag: "1.2.1"
# Overrides the image tag whose default is {{ .Chart.AppVersion }}
tag: ""

# Additional containers which are run before the app containers are started.
extraInitContainers: []
Expand Down

0 comments on commit 08e0687

Please sign in to comment.