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'll like to introduce another way to deploy / design / customize k8s resources using helm.
Some advantages :
I'll add an example in a PR.
Example of resources generation, from chart folder directly :
helm template gridsuite .
helm template gridsuite . --set gridstudy.enabled=false
helm template gridsuite . --set gridmerge.image.tag="custoTag"
gridstudy: ingress: annotations: monannotation: toto nginx.ingress.kubernetes.io/service-upstream: "false"
helm template gridsuite . -f ./my_values.yaml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'll like to introduce another way to deploy / design / customize k8s resources using helm.
Some advantages :
I'll add an example in a PR.
Example of resources generation, from chart folder directly :
Using all default value
helm template gridsuite .
Disabling gridsuite component
helm template gridsuite . --set gridstudy.enabled=false
Customizing image tag for gridmerge
helm template gridsuite . --set gridmerge.image.tag="custoTag"
Using my custom values.yaml to replace some annotations on ingress
my_values.yaml :
CLI
helm template gridsuite . -f ./my_values.yaml
The text was updated successfully, but these errors were encountered: