X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=it%2Fdep.git;a=blobdiff_plain;f=smo-install%2Foran_oom%2Fdmaapmediatorservice%2Ftemplates%2Fstatefulset.yaml;fp=smo-install%2Foran_oom%2Fdmaapmediatorservice%2Ftemplates%2Fstatefulset.yaml;h=c8df0349b6b63338789714387b0eba56332088c0;hp=46da3c5440a8bc5ebed6f88f5cd6b67df5d4a37a;hb=c9ace66e2b4635918c4c4c473dfc7bcbeb41b7ae;hpb=177701e036017bc89d6d3ab1932eaa8ce5f122a3 diff --git a/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml b/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml index 46da3c54..c8df0349 100644 --- a/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml +++ b/smo-install/oran_oom/dmaapmediatorservice/templates/statefulset.yaml @@ -1 +1,82 @@ -################################################################################ # 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 readinessProbe: tcpSocket: port: {{ .Values.dmaapmediatorservice.service.targetPort2 }} initialDelaySeconds: {{ .Values.dmaapmediatorservice.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.dmaapmediatorservice.liveness.periodSeconds }} livenessProbe: tcpSocket: port: {{ .Values.dmaapmediatorservice.service.targetPort2 }} 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: + 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 + readinessProbe: + tcpSocket: + port: {{ .Values.dmaapmediatorservice.service.targetPort2 }} + initialDelaySeconds: {{ .Values.dmaapmediatorservice.liveness.initialDelaySeconds }} + periodSeconds: {{ .Values.dmaapmediatorservice.liveness.periodSeconds }} + livenessProbe: + tcpSocket: + port: {{ .Values.dmaapmediatorservice.service.targetPort2 }} + 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: http://message-router.onap:3904 + - name: LOG_LEVEL + value: Info + volumes: + - name: {{ include "common.name.dmaapmediatorservice" . }}-dmaapmediator-data + configMap: + name: {{ include "common.name.dmaapmediatorservice" . }}-configmap-data