Skip to content

Commit

Permalink
create new version of helm chart pointing images to 2.2.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kramuenke committed Apr 29, 2024
1 parent 21abdff commit 3a0c29e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
project_id: c6o-production
- name: Deploy
run: |
curl https://storage.googleapis.com/c6o-releases/helm-charts/index.yaml --output ./index.yaml
helm package ./charts/* -d ./tmp/
helm repo index tmp --url https://charts.codezero.io
helm repo index tmp --url https://charts.codezero.io --merge ./index.yaml
gsutil cp ./tmp/* gs://c6o-releases/helm-charts
4 changes: 2 additions & 2 deletions charts/codezero/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.1.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v2"
appVersion: "2.2.0"
2 changes: 1 addition & 1 deletion charts/codezero/templates/system/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
{{- toYaml .Values.system.podSecurityContext | nindent 8 }}
initContainers:
- name: space-init
image: "c6oio/spaceinit:825a485"
image: "c6oio/spaceinit:{{ default .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.system.image.pullPolicy }}
env:
- name: CZ_CLUSTER_CERT
Expand Down
2 changes: 1 addition & 1 deletion charts/codezero/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Declare variables to be passed into your templates.

image:
tag: pasley
tag: 4786a5b
hub:
url: https://hub.codezero.io
space:
Expand Down

0 comments on commit 3a0c29e

Please sign in to comment.