-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
S3task #83
base: master
Are you sure you want to change the base?
S3task #83
Conversation
charts/oes/charts/spinnaker/templates/statefulsets/halyard.yaml
Outdated
Show resolved
Hide resolved
charts/oes/charts/spinnaker/templates/configmap/halyard-init-script.yaml
Outdated
Show resolved
Hide resolved
charts/oes/charts/spinnaker/templates/configmap/halyard-init-script.yaml
Show resolved
Hide resolved
sed -i s/SPINNAKER_NAMESPACE/${SPINNAKER_NAMESPACE}/ /tmp/spinnaker/.hal/config | ||
{{- end }} | ||
|
||
{{- else }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These s3 instructions will be executed even if repo type is not s3, so it should be handled properly. Let's say repoType is not s3, not git, but "vault" even then this conditon will be hit and executed. So, handle it something like below
{{- else if eq .Values.gitopsHalyard.repoType "s3" }}
Please review and verify all configuration changes