Updated helm charts for e-release
[it/dep.git] / nonrtric / helm / dmaapmediatorservice / templates / statefulset.yaml
diff --git a/nonrtric/helm/dmaapmediatorservice/templates/statefulset.yaml b/nonrtric/helm/dmaapmediatorservice/templates/statefulset.yaml
new file mode 100644 (file)
index 0000000..ae3971d
--- /dev/null
@@ -0,0 +1,83 @@
+################################################################################
+#   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