blob: 85cd1ff7316dadee8b78b98c47993a61e06b15f1 [file] [log] [blame]
Andy Bavierf15d53a2018-03-07 17:34:30 -07001---
Andy Bavierf15d53a2018-03-07 17:34:30 -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
16apiVersion: apps/v1beta2
17kind: Deployment
18metadata:
19 name: {{ template "onos.fullname" . }}
20 labels:
21 app: {{ template "onos.name" . }}
22 chart: {{ template "onos.chart" . }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
Scott Baker900343a2018-08-09 17:03:16 -070025{{- if .Values.xos_service_label }}
26 xos_service: {{ .Values.xos_service_label }}
27{{- end }}
Andy Bavierf15d53a2018-03-07 17:34:30 -070028spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
32 app: {{ template "onos.name" . }}
33 release: {{ .Release.Name }}
34 template:
35 metadata:
36 labels:
37 app: {{ template "onos.name" . }}
38 release: {{ .Release.Name }}
Scott Baker900343a2018-08-09 17:03:16 -070039{{- if .Values.xos_service_label }}
40 xos_service: {{ .Values.xos_service_label }}
41{{- end }}
Andy Bavierf15d53a2018-03-07 17:34:30 -070042 spec:
Gopinath Tagetfff89342018-04-16 12:12:17 -070043 serviceAccount: {{ .Values.serviceAccountName }}
44 serviceAccountName: {{ .Values.serviceAccountName }}
Andy Bavierf15d53a2018-03-07 17:34:30 -070045 containers:
46 - name: {{ .Chart.Name }}
Zack Williams2749ae52018-09-28 09:43:43 -070047 image: "{{ .Values.global.registry }}{{ .Values.images.onos.repository }}:{{ tpl .Values.images.onos.tag . }}"
48 imagePullPolicy: {{ .Values.images.onos.pullPolicy }}
Matteo Scandoloc859a7b2018-09-10 10:13:45 -070049 command: ["./bin/onos-service", "server", "debug"]
Gopinath Tagetfff89342018-04-16 12:12:17 -070050 env:
51{{ toYaml .Values.onos_env | indent 12 }}
Andy Bavierf15d53a2018-03-07 17:34:30 -070052 resources:
53{{ toYaml .Values.resources | indent 12 }}
Andy Bavier67a6e7f2018-05-30 12:17:45 -070054 volumeMounts:
55 - name: node-key
56 mountPath: /root/vtn
57 readOnly: true
Daniele Moro09047382020-01-31 16:10:57 -080058{{- if .Values.kafka_logging.enabled }}
Zack Williams7a506d22018-09-24 17:00:13 -070059 - name: onos-logs-cfg
Daniele Moro09047382020-01-31 16:10:57 -080060 mountPath: /root/onos/apache-karaf-4.2.8/etc/org.ops4j.pax.logging.cfg
Zack Williams7a506d22018-09-24 17:00:13 -070061 subPath: org.ops4j.pax.logging.cfg
Zack Williams7a506d22018-09-24 17:00:13 -070062{{- end }}
Andy Bavier67a6e7f2018-05-30 12:17:45 -070063 volumes:
64 - name: node-key
65 secret:
66 secretName: node-key
67 defaultMode: 256
68 optional: true
Daniele Moro09047382020-01-31 16:10:57 -080069{{- if .Values.kafka_logging.enabled }}
Matteo Scandolo55ff1502018-09-06 15:15:01 -070070 - name: onos-logs-cfg
71 configMap:
Hyunsun Moon90c60502019-10-19 14:46:41 -060072 name: {{ template "onos.fullname" . }}-onos
Matteo Scandolo55ff1502018-09-06 15:15:01 -070073 items:
74 - key: logCfg
75 path: org.ops4j.pax.logging.cfg
Daniele Moro09047382020-01-31 16:10:57 -080076{{- end}}
Zack Williams7a506d22018-09-24 17:00:13 -070077 - name: onos-logs
78 emptyDir: {}
Zack Williams7a506d22018-09-24 17:00:13 -070079{{- with .Values.nodeSelector }}
Andy Bavierf15d53a2018-03-07 17:34:30 -070080 nodeSelector:
81{{ toYaml . | indent 8 }}
82 {{- end }}
83 {{- with .Values.affinity }}
84 affinity:
85{{ toYaml . | indent 8 }}
86 {{- end }}
87 {{- with .Values.tolerations }}
88 tolerations:
89{{ toYaml . | indent 8 }}
90 {{- end }}