Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright 2020-present Open Networking Foundation |
| 3 | |
| 4 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 5 | */}} |
| 6 | |
| 7 | {{- if .Values.config.nssf.deploy }} |
| 8 | {{ tuple "nssf" . | include "5g-control-plane.service_account" }} |
| 9 | --- |
| 10 | apiVersion: apps/v1 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 11 | kind: Deployment |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 12 | metadata: |
| 13 | name: nssf |
| 14 | labels: |
| 15 | {{ tuple "nssf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| 16 | spec: |
| 17 | replicas: 1 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 18 | #serviceName: nssf-headless |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 19 | selector: |
| 20 | matchLabels: |
| 21 | {{ tuple "nssf" . | include "5g-control-plane.metadata_labels" | indent 6 }} |
| 22 | template: |
| 23 | metadata: |
| 24 | labels: |
| 25 | {{ tuple "nssf" . | include "5g-control-plane.metadata_labels" | indent 8 }} |
| 26 | {{- with .Values.config.nssf.podAnnotations }} |
| 27 | annotations: |
| 28 | {{- toYaml . | nindent 8 }} |
| 29 | {{- end }} |
| 30 | spec: |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 31 | serviceAccountName: nssf |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 32 | {{- if hasKey .Values.images "pullSecrets" }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 33 | imagePullSecrets: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 34 | {{ toYaml .Values.images.pullSecrets | indent 8 }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 35 | {{- end }} |
| 36 | initContainers: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 37 | - name: wait-nssf-module |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 38 | image: {{ .Values.images.tags.init | quote }} |
| 39 | imagePullPolicy: {{ .Values.images.pullPolicy }} |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 40 | command: ['sh', '-c', 'until nslookup nssf; do echo waiting for nssf; sleep 4; done;'] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 41 | {{- if .Values.config.coreDump.enabled }} |
| 42 | {{ tuple "nssf" . | include "5g-control-plane.coredump_init" | indent 6 }} |
| 43 | {{- end }} |
| 44 | containers: |
| 45 | - name: nssf |
| 46 | image: {{ .Values.images.tags.nssf }} |
| 47 | imagePullPolicy: {{ .Values.images.pullPolicy }} |
| 48 | {{- if .Values.config.coreDump.enabled }} |
| 49 | securityContext: |
| 50 | runAsUser: 0 |
| 51 | {{- end }} |
| 52 | stdin: true |
| 53 | tty: true |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 54 | command: ["/free5gc/script/nssf-run.sh"] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 55 | env: |
| 56 | - name: POD_IP |
| 57 | valueFrom: |
| 58 | fieldRef: |
| 59 | fieldPath: status.podIP |
| 60 | {{- if .Values.resources.enabled }} |
| 61 | resources: |
| 62 | {{ toYaml .Values.resources.nssf | indent 10 }} |
| 63 | {{- end }} |
| 64 | volumeMounts: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 65 | - name: run-script |
| 66 | mountPath: /free5gc/script/nssf-run.sh |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 67 | subPath: nssf-run.sh |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 68 | - name: config-dir |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 69 | mountPath: /free5gc/config |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 70 | - name: common-config |
| 71 | mountPath: /tmp/config/free5GC.conf |
| 72 | subPath: free5GC.conf |
| 73 | - name: nf-config |
| 74 | mountPath: /tmp/config/nssfcfg.conf |
| 75 | subPath: nssfcfg.conf |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 76 | {{- if .Values.config.coreDump.enabled }} |
| 77 | - name: coredump |
| 78 | mountPath: /tmp/coredump |
| 79 | {{- end }} |
| 80 | volumes: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 81 | - name: run-script |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 82 | configMap: |
| 83 | name: nssf |
| 84 | defaultMode: 493 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 85 | - name: common-config |
| 86 | configMap: |
| 87 | name: common |
| 88 | defaultMode: 493 |
| 89 | - name: nf-config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 90 | configMap: |
| 91 | name: nssf |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 92 | defaultMode: 493 |
| 93 | - name: config-dir |
| 94 | emptyDir: {} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 95 | {{- if .Values.config.coreDump.enabled }} |
| 96 | - name: host-rootfs |
| 97 | hostPath: |
| 98 | path: / |
| 99 | - name: coredump |
| 100 | hostPath: |
| 101 | path: {{ .Values.config.coreDump.path }} |
| 102 | {{- end }} |
| 103 | {{- end }} |