-
Notifications
You must be signed in to change notification settings - Fork 206
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
US-425386 Allow custom volume mounts and side car containers for installer #343
US-425386 Allow custom volume mounts and side car containers for installer #343
Conversation
Merging with master
Merging with master
Merging with master
Merging with master
Update to jenkins file to validate build tests
Merge with master
Starting PR-343 validation on -> configs |
2 similar comments
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
…a/pega-helm-charts into installer-side-car
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
1 similar comment
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> configs |
Starting PR-343 validation on -> integ-eks |
volumes: | ||
{{- if and .root.Values.distributionKitVolumeClaimName (not .root.Values.distributionKitURL) }} | ||
- name: {{ template "pegaDistributionKitVolume" }} | ||
persistentVolumeClaim: | ||
claimName: {{ .root.Values.distributionKitVolumeClaimName }} | ||
{{- end }} | ||
{{- end }} | ||
{{- if .root.Values.custom }}{{- if .root.Values.custom.volumes }} |
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.
Can this two if clubbed into one with AND operator?
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.
@Saurabh-16 Addressed as part of latest commit
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.
Update: looks like and
operator doesn't work because providing volumes under custom is optional. Having and
operator in helm for such scenarios results in nil pointer exceptions
Starting PR-343 validation on -> integ-eks |
Ability to inject custom side car containers and volume mounts to installer.