blob: 8f95a6327ec7a84de53008897cb684a358003e1c [file] [log] [blame]
Scott Bakerba88dc82018-03-20 10:35:11 -07001---
Scott Bakerba88dc82018-03-20 10:35:11 -07002# Copyright 2018-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Matteo Scandolo5628d4b2021-01-11 11:46:12 -080016apiVersion: apps/v1
Scott Bakerba88dc82018-03-20 10:35:11 -070017kind: Deployment
18metadata:
19 name: {{ template "vsg-hw.fullname" . }}
20 labels:
21 app: {{ template "vsg-hw.name" . }}
22 chart: {{ template "vsg-hw.chart" . }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 selector:
28 matchLabels:
29 app: {{ template "vsg-hw.name" . }}
30 release: {{ .Release.Name }}
31 template:
32 metadata:
33 labels:
34 app: {{ template "vsg-hw.name" . }}
35 release: {{ .Release.Name }}
36 annotations:
37 checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
38 spec:
39 containers:
40 - name: {{ .Chart.Name }}
Zack Williamsd9d6b352018-10-05 07:53:30 -070041 image: {{ .Values.global.registry }}{{ .Values.image.repository }}:{{ tpl .Values.image.tag . }}
42 imagePullPolicy: {{ .Values.image.pullPolicy }}
Scott Bakerba88dc82018-03-20 10:35:11 -070043 resources:
44{{ toYaml .Values.resources | indent 12 }}
45 volumeMounts:
46 - name: vsg-hw-config
Matteo Scandolod66ed512018-06-12 11:15:03 -070047 mountPath: /opt/xos/synchronizers/vsg-hw/mounted_config.yaml
48 subPath: mounted_config.yaml
Zack Williams3432b942018-04-24 17:46:41 -070049 - name: certchain-volume
50 mountPath: /usr/local/share/ca-certificates/local_certs.crt
51 subPath: config/ca_cert_chain.pem
Scott Bakerba88dc82018-03-20 10:35:11 -070052 volumes:
53 - name: vsg-hw-config
54 configMap:
55 name: vsg-hw
56 items:
57 - key: serviceConfig
Matteo Scandolod66ed512018-06-12 11:15:03 -070058 path: mounted_config.yaml
Zack Williams3432b942018-04-24 17:46:41 -070059 - name: certchain-volume
60 configMap:
61 name: ca-certificates
62 items:
63 - key: chain
64 path: config/ca_cert_chain.pem
Scott Bakerba88dc82018-03-20 10:35:11 -070065 {{- with .Values.nodeSelector }}
66 nodeSelector:
67{{ toYaml . | indent 8 }}
68 {{- end }}
69 {{- with .Values.affinity }}
70 affinity:
71{{ toYaml . | indent 8 }}
72 {{- end }}
73 {{- with .Values.tolerations }}
74 tolerations:
75{{ toYaml . | indent 8 }}
76 {{- end }}