-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
feat(helm): add RollingUpdate parameters #20931
feat(helm): add RollingUpdate parameters #20931
Conversation
helm/superset/Chart.yaml
Outdated
@@ -22,7 +22,7 @@ maintainers: | |||
- name: craig-rueda | |||
email: craig@craigrueda.com | |||
url: https://github.com/craig-rueda | |||
version: 0.6.6 | |||
version: 0.6.7 |
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.
This should be 0.7.1
@@ -33,6 +33,11 @@ spec: | |||
matchLabels: | |||
app: {{ template "superset.name" . }}-worker | |||
release: {{ .Release.Name }} | |||
strategy: | |||
type: RollingUpdate |
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.
Pls make the strategy configurable. You can just add the whole strategy
section into values.yaml
and then call toYaml
here.
Hi @gforien would be great if you could rebase and address the requested changes. Thank you! |
Hi @dpgaspar |
661b8d1
to
f54187c
Compare
Hi 👋 |
helm/superset/Chart.yaml
Outdated
@@ -22,7 +22,7 @@ maintainers: | |||
- name: craig-rueda | |||
email: craig@craigrueda.com | |||
url: https://github.com/craig-rueda | |||
version: 0.7.2 | |||
version: 0.7.3 |
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.
Prob need to bump this one more time
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.
Did not know which one you would merge first :)
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.
LGTM
f54187c
to
809696a
Compare
SUMMARY
We want to handle the RollingUpdate parameters for the supersetNode and supersetWorker.
How
deployment.yaml
anddeployment-worker.yaml
templatesvalues.yaml
TESTING INSTRUCTIONS
helm lint helm template . superset-release
ADDITIONAL INFORMATION