blob: fea1a1a61485093a1d9c67bb25801075f4dd3c5a [file] [log] [blame]
Vijay Venkatesh Kumar8c465172021-06-03 16:51:33 -04001{{/*
2#============LICENSE_START========================================================
3# ================================================================================
4# Copyright (c) 2021 AT&T. All rights reserved.
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18*/}}
19
20apiVersion: apps/v1
21kind: Deployment
22metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23spec:
24 replicas: 1
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 template:
27 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28 spec:
29 {{ include "common.podSecurityContext" . | indent 7 | trim}}
Vijay Venkatesh Kumar8c465172021-06-03 16:51:33 -040030 containers:
31 - name: {{ include "common.name" . }}
32 image: {{ include "repositoryGenerator.githubContainerRegistry" . }}/{{ .Values.image }}
33 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
34 {{ include "common.containerSecurityContext" . | indent 12 | trim }}
35 resources: {{ include "common.resources" . | nindent 12 }}
36 ports: {{ include "common.containerPorts" . | nindent 12 }}
37 {{- if eq .Values.liveness.enabled true }}
38 livenessProbe:
39 httpGet:
40 path: {{ .Values.liveness.path }}
41 port: {{ .Values.liveness.port }}
42 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
43 periodSeconds: {{ .Values.liveness.periodSeconds }}
44 {{ end }}
45 env:
46 - name: STORAGE
47 value: local
48 - name: STORAGE_LOCAL_ROOTDIR
49 value: "/chartmuseum-persist"
50 - name: BASIC_AUTH_USER
51 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "registrycred" "key" "login") | indent 14 }}
52 - name: BASIC_AUTH_PASS
53 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "registrycred" "key" "password") | indent 14 }}
54 volumeMounts:
55 - mountPath: /chartmuseum-persist
56 name: chart-persistent
57 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
58 volumes:
59 - name: chart-persistent
60 {{- if .Values.persistence.enabled }}
61 persistentVolumeClaim:
62 claimName: {{ include "common.fullname" . }}
63 {{- else }}
64 emptyDir: {}
65 {{- end }}
66
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +010067 {{- include "common.imagePullSecrets" . | nindent 6 }}