-
Notifications
You must be signed in to change notification settings - Fork 59
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
allow name overrides in pods #143
Conversation
a7b5fa1
to
ef6f2c0
Compare
ef6f2c0
to
64fbb2e
Compare
{{- default (printf "%s-workflow-backend" (include "retool.fullname" .)) .Values.workflows.backend.name -}} | ||
{{- end -}} | ||
|
||
|
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.
enable internal Retool to align service names with Cloud Prod, for DD dashboards shared across env
cc @ryanartecona @KnlnKS (thanks for the discussion and review!) Before Changed values
Ran command
After
So I've removed those changes to secret locations (b37160e), and we're all good: |
{{- define "retool.codeExecutor.name" -}} | ||
{{- default (printf "%s-code-executor" (include "retool.fullname" .)) .Values.codeExecutor.name -}} | ||
{{- end -}} |
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.
For these long nested calls it might be nicer to start doing some lispy formatting, like this. I lose track of parens after like 2 levels.
{{- define "retool.codeExecutor.name" -}} | |
{{- default (printf "%s-code-executor" (include "retool.fullname" .)) .Values.codeExecutor.name -}} | |
{{- end -}} | |
{{- define "retool.codeExecutor.name" -}} | |
{{- default | |
(printf "%s-code-executor" (include "retool.fullname" .)) | |
.Values.codeExecutor.name | |
-}} | |
{{- end -}} |
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.
oh whoops, for some reason github UI said this was still blocked on review.
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.
will address in subsequent pr!
This reverts commit 4f697dc.
Enable internal Retool to align service names with Cloud Prod, for DD dashboards shared across env
before the change
without custom names:
after the change
without custom names (no difference):
with custom names: