189 lines
5.8 KiB
YAML
189 lines
5.8 KiB
YAML
# Copyright 2017 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ template "kubernetes-dashboard.fullname" . }}
|
|
annotations:
|
|
{{- if .Values.commonAnnotations }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .Values.annotations }}
|
|
{{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "kubernetes-dashboard.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: kubernetes-dashboard
|
|
{{- with .Values.labels }}
|
|
{{ toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
replicas: {{ .Values.replicaCount }}
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 0
|
|
maxUnavailable: 1
|
|
type: RollingUpdate
|
|
selector:
|
|
matchLabels:
|
|
{{ include "kubernetes-dashboard.matchLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: kubernetes-dashboard
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
{{- if .Values.podAnnotations }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.podAnnotations "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "kubernetes-dashboard.labels" . | nindent 8 }}
|
|
app.kubernetes.io/component: kubernetes-dashboard
|
|
{{- if .Values.podLabels }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.securityContext }}
|
|
securityContext:
|
|
{{ toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ template "kubernetes-dashboard.serviceAccountName" . }}
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
args:
|
|
- --namespace={{ .Release.Namespace }}
|
|
{{- if not .Values.protocolHttp }}
|
|
- --auto-generate-certificates
|
|
{{- end }}
|
|
{{- if .Values.metricsScraper.enabled }}
|
|
- --sidecar-host=http://127.0.0.1:8000
|
|
{{- else }}
|
|
- --metrics-provider=none
|
|
{{- end }}
|
|
{{- with .Values.extraArgs }}
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
{{- with .Values.extraEnv }}
|
|
env:
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
ports:
|
|
{{- if .Values.protocolHttp }}
|
|
- name: http
|
|
containerPort: 9090
|
|
protocol: TCP
|
|
{{- else }}
|
|
- name: https
|
|
containerPort: 8443
|
|
protocol: TCP
|
|
{{- end }}
|
|
volumeMounts:
|
|
- name: kubernetes-dashboard-certs
|
|
mountPath: /certs
|
|
# Create on-disk volume to store exec logs
|
|
- mountPath: /tmp
|
|
name: tmp-volume
|
|
{{- with .Values.extraVolumeMounts }}
|
|
{{ toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
livenessProbe:
|
|
httpGet:
|
|
{{- if .Values.protocolHttp }}
|
|
scheme: HTTP
|
|
path: /
|
|
port: 9090
|
|
{{- else }}
|
|
scheme: HTTPS
|
|
path: /
|
|
port: 8443
|
|
{{- end }}
|
|
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
|
|
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
|
|
{{- with .Values.resources }}
|
|
resources:
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
{{- with .Values.containerSecurityContext }}
|
|
securityContext:
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
{{- if .Values.metricsScraper.enabled }}
|
|
- name: dashboard-metrics-scraper
|
|
image: "{{ .Values.metricsScraper.image.repository }}:{{ .Values.metricsScraper.image.tag }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
{{- with .Values.metricsScraper.args }}
|
|
args:
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
ports:
|
|
- containerPort: 8000
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
scheme: HTTP
|
|
path: /
|
|
port: 8000
|
|
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
|
|
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
|
|
volumeMounts:
|
|
- mountPath: /tmp
|
|
name: tmp-volume
|
|
|
|
{{- if .Values.metricsScraper.containerSecurityContext }}
|
|
securityContext:
|
|
{{ toYaml .Values.metricsScraper.containerSecurityContext | nindent 10 }}
|
|
{{- else if .Values.containerSecurityContext}}
|
|
securityContext:
|
|
{{ toYaml .Values.containerSecurityContext | nindent 10 }}
|
|
{{- end }}
|
|
{{- with .Values.metricsScraper.resources }}
|
|
resources:
|
|
{{ toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.image.pullSecrets }}
|
|
imagePullSecrets:
|
|
{{- range . }}
|
|
- name: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{ toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.priorityClassName }}
|
|
priorityClassName: "{{ . }}"
|
|
{{- end }}
|
|
volumes:
|
|
- name: kubernetes-dashboard-certs
|
|
secret:
|
|
secretName: {{ template "kubernetes-dashboard.fullname" . }}-certs
|
|
- name: tmp-volume
|
|
emptyDir: {}
|
|
{{- with .Values.extraVolumes }}
|
|
{{ toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{ toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{ toYaml . | nindent 8 }}
|
|
{{- end }}
|