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.pcf.deploy }} |
| 8 | {{ tuple "pcf" . | 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: pcf |
| 14 | labels: |
| 15 | {{ tuple "pcf" . | 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: pcf-headless |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 19 | selector: |
| 20 | matchLabels: |
| 21 | {{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 6 }} |
| 22 | template: |
| 23 | metadata: |
| 24 | labels: |
| 25 | {{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 8 }} |
| 26 | {{- with .Values.config.pcf.podAnnotations }} |
| 27 | annotations: |
| 28 | {{- toYaml . | nindent 8 }} |
| 29 | {{- end }} |
| 30 | spec: |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 31 | serviceAccountName: pcf |
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-pcf-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 pcf; do echo waiting for pcf; sleep 4; done;'] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 41 | {{- if .Values.config.coreDump.enabled }} |
| 42 | {{ tuple "pcf" . | include "5g-control-plane.coredump_init" | indent 6 }} |
| 43 | {{- end }} |
| 44 | containers: |
| 45 | - name: pcf |
| 46 | image: {{ .Values.images.tags.pcf }} |
| 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/pcf-run.sh"] |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 55 | env: |
Ajay Lotan Thakur | 45ea2f9 | 2021-06-25 03:07:59 -0500 | [diff] [blame] | 56 | - name: GRPC_GO_LOG_VERBOSITY_LEVEL |
| 57 | value: {{ .Values.config.grpc.golog_verbosity | quote }} |
| 58 | - name: GRPC_GO_LOG_SEVERITY_LEVEL |
| 59 | value: {{ .Values.config.grpc.severity | quote }} |
| 60 | - name: GRPC_TRACE |
| 61 | value: {{ .Values.config.grpc.trace | quote }} |
| 62 | - name: GRPC_VERBOSITY |
| 63 | value: {{ .Values.config.grpc.verbosity | quote }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 64 | - name: POD_IP |
| 65 | valueFrom: |
| 66 | fieldRef: |
| 67 | fieldPath: status.podIP |
Ajay Lotan Thakur | 45ea2f9 | 2021-06-25 03:07:59 -0500 | [diff] [blame] | 68 | {{- if .Values.config.managedByConfigPod.enabled }} |
| 69 | - name: MANAGED_BY_CONFIG_POD |
| 70 | value: "true" |
| 71 | {{- end }} |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 72 | {{- if .Values.resources.enabled }} |
| 73 | resources: |
| 74 | {{ toYaml .Values.resources.pcf | indent 10 }} |
| 75 | {{- end }} |
| 76 | volumeMounts: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 77 | - name: run-script |
| 78 | mountPath: /free5gc/script/pcf-run.sh |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 79 | subPath: pcf-run.sh |
Hyunsun Moon | 64f3435 | 2021-05-25 21:22:00 +0000 | [diff] [blame] | 80 | - name: nf-config |
Hyunsun Moon | 858a109 | 2021-05-25 21:51:56 +0000 | [diff] [blame] | 81 | mountPath: /free5gc/config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 82 | {{- if .Values.config.coreDump.enabled }} |
| 83 | - name: coredump |
| 84 | mountPath: /tmp/coredump |
| 85 | {{- end }} |
| 86 | volumes: |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 87 | - name: run-script |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 88 | configMap: |
| 89 | name: pcf |
| 90 | defaultMode: 493 |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 91 | - name: nf-config |
Badhrinath | 987e1d8 | 2020-11-20 13:23:58 -0600 | [diff] [blame] | 92 | configMap: |
| 93 | name: pcf |
Hyunsun Moon | 6a65148 | 2021-02-26 01:46:44 -0800 | [diff] [blame] | 94 | defaultMode: 493 |
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 }} |