add GKE prefix

This commit is contained in:
takeshi.nakata 2020-04-22 19:06:30 +09:00
parent 0bb8bbfb92
commit 7a9c0e4baf
3 changed files with 5 additions and 5 deletions

View file

@ -183,8 +183,8 @@ Helm v3 has removed the `install-crds` hook so CRDs are now populated by files i
| server.autoscaling.maxReplicas | Maximum number of replicas for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `5` | | server.autoscaling.maxReplicas | Maximum number of replicas for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `5` |
| server.autoscaling.targetCPUUtilizationPercentage | Average CPU utilization percentage for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `50` | | server.autoscaling.targetCPUUtilizationPercentage | Average CPU utilization percentage for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `50` |
| server.autoscaling.targetMemoryUtilizationPercentage | Average memory utilization percentage for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `50` | | server.autoscaling.targetMemoryUtilizationPercentage | Average memory utilization percentage for the server [HPA](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) | `50` |
| server.backendConfig.enabled | Enable BackendConfig custom resource for Google Kubernetes Engine. | `false` | | server.GKEbackendConfig.enabled | Enable BackendConfig custom resource for Google Kubernetes Engine. | `false` |
| server.backendConfig.spec | [BackendConfigSpec](https://cloud.google.com/kubernetes-engine/docs/concepts/backendconfig#backendconfigspec_v1beta1_cloudgooglecom) | `{}` | | server.GKEbackendConfig.spec | [BackendConfigSpec](https://cloud.google.com/kubernetes-engine/docs/concepts/backendconfig#backendconfigspec_v1beta1_cloudgooglecom) | `{}` |
| server.certificate.additionalHosts | Certificate manager additional hosts | `[]` | | server.certificate.additionalHosts | Certificate manager additional hosts | `[]` |
| server.certificate.domain | Certificate manager domain | `"argocd.example.com"` | | server.certificate.domain | Certificate manager domain | `"argocd.example.com"` |
| server.certificate.enabled | Enables a certificate manager certificate. | `false` | | server.certificate.enabled | Enables a certificate manager certificate. | `false` |

View file

@ -1,4 +1,4 @@
{{- if .Values.server.backendConfig.enabled }} {{- if .Values.server.GKEbackendConfig.enabled }}
apiVersion: cloud.google.com/v1beta1 apiVersion: cloud.google.com/v1beta1
kind: BackendConfig kind: BackendConfig
metadata: metadata:
@ -11,5 +11,5 @@ metadata:
app.kubernetes.io/part-of: argocd app.kubernetes.io/part-of: argocd
app.kubernetes.io/component: {{ .Values.server.name }} app.kubernetes.io/component: {{ .Values.server.name }}
spec: spec:
{{- toYaml .Values.server.backendConfig.spec | nindent 2 }} {{- toYaml .Values.server.GKEbackendConfig.spec | nindent 2 }}
{{- end }} {{- end }}

View file

@ -562,7 +562,7 @@ server:
enabled: true enabled: true
## Enable BackendConfig custom resource for Google Kubernetes Engine ## Enable BackendConfig custom resource for Google Kubernetes Engine
backendConfig: GKEbackendConfig:
enabled: false enabled: false
spec: {} spec: {}
# spec: # spec: