blob: a69b4ac892dabb8dbab13519fbe03d1da2367ed0 [file] [log] [blame]
Jeremy Ronquillo223db002020-06-05 10:28:22 -07001{{/*
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07002# Copyright 2019-present Open Networking Foundation
Jeremy Ronquillo223db002020-06-05 10:28:22 -07003
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07004# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquillo223db002020-06-05 10:28:22 -07005
6Default values for mcord-vepc-helm.
7This is a YAML-formatted file.
8Declare variables to be passed into your templates.
9*/}}
10
Hyunsun Moon83ff7352020-07-09 11:03:52 -070011{{- if .Values.config.hss.deploy }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070012{{ tuple "hss" . | include "omec-control-plane.service_account" }}
13---
14apiVersion: apps/v1
15kind: StatefulSet
16metadata:
17 name: hss
18 labels:
19{{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }}
20spec:
21 replicas: 1
22 serviceName: hss-headless
23 selector:
24 matchLabels:
25{{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 6 }}
26 template:
27 metadata:
28 labels:
29{{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 8 }}
Andy Bavierba196552020-09-17 13:58:04 -070030 {{- with .Values.config.hss.podAnnotations }}
31 annotations:
32 {{- toYaml . | nindent 8 }}
33 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070034 spec:
35 {{- if .Values.nodeSelectors.enabled }}
36 nodeSelector:
37 {{ .Values.nodeSelectors.hss.label }}: {{ .Values.nodeSelectors.hss.value }}
38 {{- end }}
39 serviceAccountName: hss
Hyunsun Moond9a09e82021-03-17 12:16:53 -070040 {{- if hasKey .Values.images "pullSecrets" }}
Hyunsun Moon8da17882020-10-14 21:28:44 -050041 imagePullSecrets:
Hyunsun Moond9a09e82021-03-17 12:16:53 -070042{{ toYaml .Values.images.pullSecrets | indent 8 }}
Hyunsun Moon8da17882020-10-14 21:28:44 -050043 {{- end }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070044 initContainers:
Hyunsun Moond60f50c2020-10-06 15:09:01 -050045 - name: hss-bootstrap
46 image: {{ .Values.images.tags.hssdb }}
Jeremy Ronquillo223db002020-06-05 10:28:22 -070047 imagePullPolicy: {{ .Values.images.pullPolicy }}
Hyunsun Moon1fc24472021-03-14 19:10:11 -050048 command: ["/opt/c3po/hss/scripts/hss-bootstrap.sh"]
Jeremy Ronquillo223db002020-06-05 10:28:22 -070049 volumeMounts:
Hyunsun Moon1fc24472021-03-14 19:10:11 -050050 - name: scripts
51 mountPath: /opt/c3po/hss/scripts
Jeremy Ronquillo223db002020-06-05 10:28:22 -070052 {{- if .Values.config.coreDump.enabled }}
53{{ tuple "hss" . | include "omec-control-plane.coredump_init" | indent 6 }}
54 {{- end }}
55 containers:
56 - name: hss
57 image: {{ .Values.images.tags.hss }}
58 imagePullPolicy: {{ .Values.images.pullPolicy }}
59 {{- if .Values.config.coreDump.enabled }}
60 securityContext:
61 privileged: true
62 runAsUser: 0
63 {{- end }}
64 stdin: true
65 tty: true
Hyunsun Moon1fc24472021-03-14 19:10:11 -050066 command: ["bash", "-c", "/opt/c3po/hss/scripts/hss-run.sh; sleep 3600"]
Jeremy Ronquillo223db002020-06-05 10:28:22 -070067 {{- if .Values.resources.enabled }}
68 resources:
69{{ toYaml .Values.resources.hss | indent 10 }}
70 {{- end }}
71 volumeMounts:
Hyunsun Moon1fc24472021-03-14 19:10:11 -050072 - name: scripts
73 mountPath: /opt/c3po/hss/scripts
74 - name: configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -070075 mountPath: /etc/hss/conf
76 {{- if .Values.config.coreDump.enabled }}
77 - name: coredump
78 mountPath: /tmp/coredump
79 {{- end }}
80 volumes:
Hyunsun Moon1fc24472021-03-14 19:10:11 -050081 - name: scripts
Jeremy Ronquillo223db002020-06-05 10:28:22 -070082 configMap:
Hyunsun Moon1fc24472021-03-14 19:10:11 -050083 name: hss-scripts
Jeremy Ronquillo223db002020-06-05 10:28:22 -070084 defaultMode: 493
Hyunsun Moon1fc24472021-03-14 19:10:11 -050085 - name: configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -070086 configMap:
Hyunsun Moon1fc24472021-03-14 19:10:11 -050087 name: hss-configs
Jeremy Ronquillo223db002020-06-05 10:28:22 -070088 defaultMode: 420
89 {{- if .Values.config.coreDump.enabled }}
90 - name: host-rootfs
91 hostPath:
92 path: /
93 - name: coredump
94 hostPath:
95 path: {{ .Values.config.coreDump.path }}
96 {{- end }}
Hyunsun Moon83ff7352020-07-09 11:03:52 -070097{{- end }}