mirror of
https://github.com/FlipsideCrypto/coredns-helm.git
synced 2026-02-06 10:56:50 +00:00
This is the common approach, stable doesnt make sense. Also since coredns is the only chart in this repo, link the README instead. Signed-off-by: Manuel Rüger <manuel@rueg.eu>
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
{{- if and (.Values.hpa.enabled) (not .Values.autoscaler.enabled) }}
|
|
---
|
|
apiVersion: autoscaling/v2beta2
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
name: {{ template "coredns.fullname" . }}
|
|
labels:
|
|
app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
|
|
app.kubernetes.io/instance: {{ .Release.Name | quote }}
|
|
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
|
|
{{- if .Values.isClusterService }}
|
|
k8s-app: {{ .Chart.Name | quote }}
|
|
kubernetes.io/cluster-service: "true"
|
|
kubernetes.io/name: "CoreDNS"
|
|
{{- end }}
|
|
app.kubernetes.io/name: {{ template "coredns.name" . }}
|
|
{{- if .Values.customLabels }}
|
|
{{ toYaml .Values.customLabels | indent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: {{ default (include "coredns.fullname" .) .Values.deployment.name }}
|
|
minReplicas: {{ .Values.hpa.minReplicas }}
|
|
maxReplicas: {{ .Values.hpa.maxReplicas }}
|
|
metrics:
|
|
{{ toYaml .Values.hpa.metrics | indent 4 }}
|
|
{{- if .Values.hpa.behavior }}
|
|
behavior:
|
|
{{ toYaml .Values.hpa.behavior | indent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|