Skip to content

Commit

Permalink
Merge pull request #10 from pi-geosolutions/fix-init-containers
Browse files Browse the repository at this point in the history
Fix init containers. Missing ; in command instructions
  • Loading branch information
f-necas authored Apr 11, 2024
2 parents 9cc4ccc + 538bdab commit 2fa3f6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion datahub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: datahub
description: A Helm chart to deploy the datahub application
type: application
version: 0.5.4
version: 0.5.5
appVersion: "1.16.0"
maintainers:
- name: geOrchestra
Expand Down
2 changes: 1 addition & 1 deletion datahub/templates/_bootstrap-datahub-configuration.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cp /ssh-secret/ssh-privatekey /root/.ssh/id_rsa ;
chmod 0600 /root/.ssh/id_rsa ;
{{- end }}
rm -Rf /etc/datahub
rm -Rf /etc/datahub ;
git clone --depth 1 --single-branch {{ .Values.configuration.git.url }} -b {{ .Values.configuration.git.ref }} /etc/datahub ;
{{- if .Values.configuration.git.ssh_secret }}
env:
Expand Down
2 changes: 1 addition & 1 deletion metadata-editor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: metadata-editor
description: A Helm chart to deploy the metadata-editor application
type: application
version: 0.1.1
version: 0.1.2
appVersion: "1.0.0"
maintainers:
- name: geOrchestra
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cp /ssh-secret/ssh-privatekey /root/.ssh/id_rsa ;
chmod 0600 /root/.ssh/id_rsa ;
{{- end }}
rm -Rf /etc/metadata-editor
rm -Rf /etc/metadata-editor ;
git clone --depth 1 --single-branch {{ .Values.configuration.git.url }} -b {{ .Values.configuration.git.ref }} /etc/metadata-editor ;
{{- if .Values.configuration.git.ssh_secret }}
env:
Expand Down

0 comments on commit 2fa3f6e

Please sign in to comment.