We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to set up temporal using the helm chart on an existing cassandra cluster using the following settings:
helm template temporal . \ --values values/values.cassandra.yaml \ --set server.config.persistence.default.cassandra.existingSecret=someExistingSecret \ --set server.config.persistence.visibility.cassandra.password=aPasswordInstead --set schema.setup.enabled=true \ --set schema.update.enabled=true
The rendered chart template should include the blocks as follows:
- name: CASSANDRA_PASSWORD valueFrom: secretKeyRef: name: someExistingSecret key: password
but it has:
- name: CASSANDRA_PASSWORD value: password
- name: CASSANDRA_PASSWORD value: aPasswordInstead
This works as expected.
See helm template command at beginning of issue
helm template
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What are you really trying to do?
I am trying to set up temporal using the helm chart on an existing cassandra cluster using the following settings:
Describe the bug
The rendered chart template should include the blocks as follows:
default
but it has:
visibility
This works as expected.
Minimal Reproduction
See
helm template
command at beginning of issueEnvironment/Versions
The text was updated successfully, but these errors were encountered: