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
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG
If this is a BUG REPORT, please:
charts/stable/gcloud-sqlproxy/templates/horizontalpodautoscaler.yaml
Line 14 in 36e7528
charts/stable/gcloud-sqlproxy/values.yaml
Line 21 in 36e7528
Version of Helm and Kubernetes: helm: 3.13.0 kubernetes: 1.24
Which chart: gcloud-sqlproxy:0.25.2
What happened: Template is setting my HPA kind as Deployment even though in my values.yaml file i have useStatefulset: true.
What you expected to happen: Should set the HPA kind as Statefulset instead of Deployment
*** Possible Fix***: Probably just need an if else statement depending on what useStatefulset is set to in the values.yaml file.
Thank you
The text was updated successfully, but these errors were encountered:
gcloud-sqlproxy/templates/horizontalpodautoscaler.yaml
{{- if .Values.useStatefulset }} kind: Statefulset {{- else }} kind: Deployment {{- end }}
Sorry, something went wrong.
[gcloud-sqlproxy] HPA kind depends on useStatefulset value - #142 (#148)
13dcf5b
* #142 - HPA kind * updated chart version to 0.25.5
[gcloud-sqlproxy] HPA kind Fix case sensitive StatefulSet (#149)
70539fe
* [gcloud-sqlproxy] HPA kind depends on useStatefulset value - Fix case sensitive StatefulSet #142 * updated chart version to 0.25.6
Successfully merging a pull request may close this issue.
Is this a BUG REPORT or FEATURE REQUEST? (choose one):
BUG
If this is a BUG REPORT, please:
charts/stable/gcloud-sqlproxy/templates/horizontalpodautoscaler.yaml
Line 14 in 36e7528
Would have assumed that if this is set to true
charts/stable/gcloud-sqlproxy/values.yaml
Line 21 in 36e7528
Then HorizontalPodAutoscaler should be set to kind StatefulSet
Version of Helm and Kubernetes:
helm: 3.13.0
kubernetes: 1.24
Which chart:
gcloud-sqlproxy:0.25.2
What happened:
Template is setting my HPA kind as Deployment even though in my values.yaml file i have useStatefulset: true.
What you expected to happen:
Should set the HPA kind as Statefulset instead of Deployment
*** Possible Fix***:
Probably just need an if else statement depending on what useStatefulset is set to in the values.yaml file.
Thank you
The text was updated successfully, but these errors were encountered: