mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
[platform]: add vpa for cozy etcd operator
Signed-off-by: kklinch0 <kklinch0@gmail.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
appVersion: v0.4.1
|
||||
appVersion: v0.4.2
|
||||
name: etcd-operator
|
||||
type: application
|
||||
version: 0.4.1
|
||||
version: 0.4.2
|
||||
|
||||
@@ -26,6 +26,11 @@
|
||||
| etcdOperator.securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]}}` | ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ |
|
||||
| etcdOperator.service.port | int | `9443` | Service port |
|
||||
| etcdOperator.service.type | string | `"ClusterIP"` | Service type |
|
||||
| etcdOperator.vpa.enabled | bool | `true` | |
|
||||
| etcdOperator.vpa.maxAllowed.cpu | string | `"1000m"` | |
|
||||
| etcdOperator.vpa.maxAllowed.memory | string | `"1Gi"` | |
|
||||
| etcdOperator.vpa.minAllowed.cpu | string | `"100m"` | |
|
||||
| etcdOperator.vpa.minAllowed.memory | string | `"128Mi"` | |
|
||||
| fullnameOverride | string | `""` | Override a full name of helm release |
|
||||
| imagePullSecrets | list | `[]` | |
|
||||
| kubeRbacProxy.args[0] | string | `"--secure-listen-address=0.0.0.0:8443"` | |
|
||||
@@ -41,6 +46,11 @@
|
||||
| kubeRbacProxy.securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]}}` | ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ |
|
||||
| kubeRbacProxy.service.port | int | `8443` | Service port |
|
||||
| kubeRbacProxy.service.type | string | `"ClusterIP"` | Service type |
|
||||
| kubeRbacProxy.vpa.enabled | bool | `true` | |
|
||||
| kubeRbacProxy.vpa.maxAllowed.cpu | string | `"500m"` | |
|
||||
| kubeRbacProxy.vpa.maxAllowed.memory | string | `"256Mi"` | |
|
||||
| kubeRbacProxy.vpa.minAllowed.cpu | string | `"50m"` | |
|
||||
| kubeRbacProxy.vpa.minAllowed.memory | string | `"64Mi"` | |
|
||||
| kubernetesClusterDomain | string | `"cluster.local"` | Kubernetes cluster domain prefix |
|
||||
| nameOverride | string | `""` | Override a name of helm release |
|
||||
| nodeSelector | object | `{}` | ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ |
|
||||
@@ -51,4 +61,5 @@
|
||||
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
|
||||
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
|
||||
| tolerations | list | `[]` | ref: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ |
|
||||
| vpa.updatePolicy | string | `"Auto"` | |
|
||||
|
||||
|
||||
@@ -45,10 +45,12 @@ spec:
|
||||
readinessProbe:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if not .Values.etcdOperator.vpa.enabled }}
|
||||
{{- with .Values.etcdOperator.resources }}
|
||||
resources:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- with .Values.etcdOperator.securityContext }}
|
||||
securityContext:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
@@ -87,10 +89,12 @@ spec:
|
||||
readinessProbe:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if not .Values.kubeRbacProxy.vpa.enabled }}
|
||||
{{- with .Values.kubeRbacProxy.resources }}
|
||||
resources:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- with .Values.kubeRbacProxy.securityContext }}
|
||||
securityContext:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
{{- if or .Values.etcdOperator.vpa.enabled .Values.kubeRbacProxy.vpa.enabled }}
|
||||
apiVersion: autoscaling.k8s.io/v1
|
||||
kind: VerticalPodAutoscaler
|
||||
metadata:
|
||||
name: {{ include "etcd-operator.fullname" . }}-controller-manager
|
||||
labels:
|
||||
{{- include "etcd-operator.labels" . | nindent 4 }}
|
||||
spec:
|
||||
targetRef:
|
||||
apiVersion: "apps/v1"
|
||||
kind: Deployment
|
||||
name: {{ include "etcd-operator.fullname" . }}-controller-manager
|
||||
updatePolicy:
|
||||
updateMode: {{ .Values.vpa.updatePolicy | default "Auto" | quote }}
|
||||
resourcePolicy:
|
||||
containerPolicies:
|
||||
{{- if .Values.etcdOperator.vpa.enabled }}
|
||||
- containerName: etcd-operator
|
||||
{{- with .Values.etcdOperator.vpa.minAllowed }}
|
||||
minAllowed:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- with .Values.etcdOperator.vpa.maxAllowed }}
|
||||
maxAllowed:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
controlledResources: ["cpu", "memory"]
|
||||
{{- end }}
|
||||
{{- if .Values.kubeRbacProxy.vpa.enabled }}
|
||||
- containerName: kube-rbac-proxy
|
||||
{{- with .Values.kubeRbacProxy.vpa.minAllowed }}
|
||||
minAllowed:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- with .Values.kubeRbacProxy.vpa.maxAllowed }}
|
||||
maxAllowed:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
controlledResources: ["cpu", "memory"]
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
@@ -131,6 +131,36 @@
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"vpa": {
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"maxAllowed": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"type": "string"
|
||||
},
|
||||
"memory": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"minAllowed": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"type": "string"
|
||||
},
|
||||
"memory": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -227,6 +257,36 @@
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"vpa": {
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"maxAllowed": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"type": "string"
|
||||
},
|
||||
"memory": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"minAllowed": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"type": "string"
|
||||
},
|
||||
"memory": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -270,6 +330,14 @@
|
||||
},
|
||||
"tolerations": {
|
||||
"type": "array"
|
||||
},
|
||||
"vpa": {
|
||||
"properties": {
|
||||
"updatePolicy": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
||||
@@ -84,6 +84,15 @@ etcdOperator:
|
||||
drop:
|
||||
- ALL
|
||||
|
||||
vpa:
|
||||
enabled: true
|
||||
minAllowed:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
maxAllowed:
|
||||
cpu: 1000m
|
||||
memory: 1Gi
|
||||
|
||||
kubeRbacProxy:
|
||||
|
||||
image:
|
||||
@@ -142,6 +151,15 @@ kubeRbacProxy:
|
||||
drop:
|
||||
- ALL
|
||||
|
||||
vpa:
|
||||
enabled: true
|
||||
minAllowed:
|
||||
cpu: 50m
|
||||
memory: 64Mi
|
||||
maxAllowed:
|
||||
cpu: 500m
|
||||
memory: 256Mi
|
||||
|
||||
# -- Kubernetes cluster domain prefix
|
||||
kubernetesClusterDomain: cluster.local
|
||||
|
||||
@@ -182,3 +200,6 @@ tolerations: []
|
||||
|
||||
# -- ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
|
||||
affinity: {}
|
||||
|
||||
vpa:
|
||||
updatePolicy: "Auto"
|
||||
|
||||
Reference in New Issue
Block a user