X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=smo-install%2Foran_oom%2Fdmaapmediatorservice%2Ftemplates%2Fstatefulset.yaml;h=e3211e241c66bdee5ea1b6121282b4aca8b0164d;hb=cdb0db58a12a8d78c95d5ac72154fbe404bc441c;hp=ad74f8df1b8e8c8f04f620de687056101b502e85;hpb=11f85c74e987cccc699eb2204f14792561d6fbda;p=it%2Fdep.git diff --git a/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml b/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml index ad74f8df..e3211e24 100644 --- a/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml +++ b/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml @@ -1 +1,59 @@ -################################################################################ # Copyright (c) 2021 Nordix Foundation. # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################ kind: StatefulSet apiVersion: apps/v1 metadata: name: {{ include "common.name.dmaapmediatorservice" . }} namespace: {{ include "common.namespace.nonrtric" . }} generation: 1 labels: app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.dmaapmediatorservice" . }} chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} annotations: deployment.kubernetes.io/revision: '1' spec: serviceName: {{ include "common.name.dmaapmediatorservice" . }} replicas: 1 selector: matchLabels: app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.dmaapmediatorservice" . }} release: {{ .Release.Name }} template: metadata: labels: app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.dmaapmediatorservice" . }} release: {{ .Release.Name }} spec: hostname: {{ include "common.name.dmaapmediatorservice" . }} containers: - name: {{ include "common.container.dmaapmediatorservice" . }} image: {{ .Values.dmaapmediatorservice.image.registry }}/{{ .Values.dmaapmediatorservice.image.name }}:{{ .Values.dmaapmediatorservice.image.tag }} imagePullPolicy: {{ .Values.dmaapmediatorservice.imagePullPolicy }} ports: - containerPort: {{ .Values.dmaapmediatorservice.service.targetPort1 }} protocol: TCP - containerPort: {{ .Values.dmaapmediatorservice.service.targetPort2 }} protocol: TCP # Temporarily disabled probes due to no http available in the container # readinessProbe: # tcpSocket: # port: {{ .Values.dmaapmediatorservice.service.targetPort1 }} # initialDelaySeconds: {{ .Values.dmaapmediatorservice.liveness.initialDelaySeconds }} # periodSeconds: {{ .Values.dmaapmediatorservice.liveness.periodSeconds }} # livenessProbe: # tcpSocket: # port: {{ .Values.dmaapmediatorservice.service.targetPort1 }} # initialDelaySeconds: {{ .Values.dmaapmediatorservice.liveness.initialDelaySeconds }} # periodSeconds: {{ .Values.dmaapmediatorservice.liveness.periodSeconds }} volumeMounts: - name: {{ include "common.name.dmaapmediatorservice" . }}-dmaapmediator-data mountPath: /configs/type_config.json subPath: type_config.json env: - name: INFO_PRODUCER_HOST value: https://{{ include "common.name.dmaapmediatorservice" . }} - name: INFO_PRODUCER_PORT value: "{{ .Values.dmaapmediatorservice.service.internalPort2 }}" - name: INFO_COORD_ADDR value: https://informationservice:9083 - name: DMAAP_MR_ADDR value: https://message-router.onap:3905 - name: LOG_LEVEL value: Info volumes: - name: {{ include "common.name.dmaapmediatorservice" . }}-dmaapmediator-data configMap: name: {{ include "common.name.dmaapmediatorservice" . }}-configmap-data \ No newline at end of file +################################################################################ +# Copyright (c) 2021 Nordix Foundation. # +# # +# Licensed under the Apache License, Version 2.0 (the "License"); # +# you may not use this file except in compliance with the License. # +# You may obtain a copy of the License at # +# # +# http://www.apache.org/licenses/LICENSE-2.0 # +# # +# Unless required by applicable law or agreed to in writing, software # +# distributed under the License is distributed on an "AS IS" BASIS, # +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # +# See the License for the specific language governing permissions and # +# limitations under the License. # +################################################################################ + +kind: StatefulSet +apiVersion: apps/v1 +metadata: {{- include "common.resourceMetadata" . | nindent 2 }} +spec: + serviceName: {{ include "common.name" . }} + replicas: 1 + selector: {{- include "common.selectors" . | nindent 4 }} + template: + metadata: {{- include "common.templateMetadata" . | nindent 6 }} + spec: + hostname: {{ include "common.name" . }} + {{- if .Values.dmaapTopicInit.enabled }} + initContainers: {{- include "dmaapTopic.initContainer" . | nindent 6 }} + {{- end }} + containers: + - name: {{ include "common.containername" . }} + image: {{ .Values.image.registry }}/{{ .Values.image.name }}:{{ .Values.image.tag }} + imagePullPolicy: {{ .Values.imagePullPolicy }} + ports: {{- include "common.containerPorts" . | nindent 8 }} + {{- /* Only the info producer port is active */ -}} + {{- include "common.tcpsocketProbes" (dict "port" ((first .Values.service.ports).internalPort_tls) "dot" .) | nindent 8 }} + volumeMounts: + - name: {{ include "common.name" . }}-dmaapmediator-data + mountPath: /configs/type_config.json + subPath: type_config.json + env: + - name: INFO_PRODUCER_HOST + value: "{{ default (print "https://" ( include "common.name" . )) .Values.infoProducerHost }}" + - name: INFO_PRODUCER_PORT + value: "{{ default (first .Values.service.ports).internalPort_tls .Values.infoProducerPort }}" + - name: INFO_COORD_ADDR + value: "{{ .Values.infoCoordinatorAddr }}" + - name: DMAAP_MR_ADDR + value: "{{ .Values.dmaapMrAddr }}" + - name: LOG_LEVEL + value: "{{ .Values.logLevel }}" + volumes: + - name: {{ include "common.name" . }}-dmaapmediator-data + configMap: + name: {{ include "common.name" . }}-type-configmap + {{- if .Values.dmaapTopicInit.enabled -}} + {{- include "dmaapTopic.initVolume" . | nindent 8 }} + {{- end }}