Skip to content

Commit

Permalink
fix metastorage provisioner version
Browse files Browse the repository at this point in the history
  • Loading branch information
denarsh committed Aug 20, 2024
1 parent fce3a8d commit 0c94d6b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/branch-naming-convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,13 @@ jobs:
allowed_prefixes: 'DEV-,weekly-rc-,DEVOPS-,quality-' # All branches should start with the given prefix
ignore: master,main,saas # Ignore exactly matching branch names from convention
min_length: 5 # Min length of the branch name
max_length: 300 # Max length of the branch name
max_length: 300 # Max length of the branch name
- name: Package and release helm
if: ${{ steps.tag_bump.outputs.bumped == 'true' && steps.tag_bump.outputs.prerelease == 'false' }}
env:
CHARTMUSEUM_USER: ${{ secrets.CHARTMUSEUM_USER }}
CHARTMUSEUM_PASSWORD: ${{ secrets.CHARTMUSEUM_PASSWORD }}
run: |
helm plugin install https://github.com/chartmuseum/helm-push.git
helm repo add cnvrg https://charts.slim.cnvrg.io/cnvrg
helm cm-push charts/metastorageprovisioner -f cnvrg -u=${CHARTMUSEUM_USER} -p=${CHARTMUSEUM_PASSWORD} --context-path /cnvrg
6 changes: 1 addition & 5 deletions charts/metastorageprovisioner/templates/dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ spec:
containers:
- name: metastorageprovisioner
imagePullPolicy: Always
{{- if .Values.version }}
image: "{{.Values.imageHub}}/cnvrg-operator:{{.Values.version}}"
{{- else }}
image: "{{.Values.imageHub}}/cnvrg-operator:{{.Chart.Version}}"
{{- end }}
image: "{{.Values.imageHub}}/cnvrg-operator:5.1.20"
command:
- /opt/app-root/cnvrg-metastorageprovisioner
- start
Expand Down

0 comments on commit 0c94d6b

Please sign in to comment.