Updated helm charts for e-release
[it/dep.git] / nonrtric / helm / informationservice / templates / statefulset.yaml
 kind: StatefulSet
 apiVersion: apps/v1
 metadata:
-  name: {{ include "common.name.enrichmentservice" . }}
+  name: {{ include "common.name.informationservice" . }}
   namespace: {{ include "common.namespace.nonrtric" . }}
   generation: 1
   labels:
-    app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.enrichmentservice" . }}
+    app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.informationservice" . }}
     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
     release: {{ .Release.Name }}
     heritage: {{ .Release.Service }}
   annotations:
     deployment.kubernetes.io/revision: '1'
 spec:
-  serviceName: {{ include "common.name.enrichmentservice" . }}
+  serviceName: {{ include "common.name.informationservice" . }}
   replicas: 1
   selector:
     matchLabels:
-      app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.enrichmentservice" . }}
+      app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.informationservice" . }}
       release: {{ .Release.Name }}
   template:
     metadata:
       labels:
-        app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.enrichmentservice" . }}
+        app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.informationservice" . }}
         release: {{ .Release.Name }}
     spec:
-      hostname: {{ include "common.name.enrichmentservice" . }}
+      hostname: {{ include "common.name.informationservice" . }}
       containers:
-      - name: {{ include "common.container.enrichmentservice" . }}
-        image: {{ .Values.enrichmentservice.image.registry }}/{{ .Values.enrichmentservice.image.name }}:{{ .Values.enrichmentservice.image.tag }}
-        imagePullPolicy: {{ .Values.enrichmentservice.imagePullPolicy }}
+      - name: {{ include "common.container.informationservice" . }}
+        image: {{ .Values.informationservice.image.registry }}/{{ .Values.informationservice.image.name }}:{{ .Values.informationservice.image.tag }}
+        imagePullPolicy: {{ .Values.informationservice.imagePullPolicy }}
         ports:
-        - containerPort: {{ .Values.enrichmentservice.service.targetPort1 }}
+        - containerPort: {{ .Values.informationservice.service.targetPort1 }}
           protocol: TCP
-        - containerPort: {{ .Values.enrichmentservice.service.targetPort2 }}
+        - containerPort: {{ .Values.informationservice.service.targetPort2 }}
           protocol: TCP
         readinessProbe:
           tcpSocket:
-            port: {{ .Values.enrichmentservice.service.targetPort1 }}
-          initialDelaySeconds: {{ .Values.enrichmentservice.liveness.initialDelaySeconds }}
-          periodSeconds: {{ .Values.enrichmentservice.liveness.periodSeconds }}
+            port: {{ .Values.informationservice.service.targetPort1 }}
+          initialDelaySeconds: {{ .Values.informationservice.liveness.initialDelaySeconds }}
+          periodSeconds: {{ .Values.informationservice.liveness.periodSeconds }}
         livenessProbe:
           httpGet:
             path: /status
-            port: {{ .Values.enrichmentservice.service.targetPort1 }}
-          initialDelaySeconds: {{ .Values.enrichmentservice.liveness.initialDelaySeconds }}
-          periodSeconds: {{ .Values.enrichmentservice.liveness.periodSeconds }}
+            port: {{ .Values.informationservice.service.targetPort1 }}
+          initialDelaySeconds: {{ .Values.informationservice.liveness.initialDelaySeconds }}
+          periodSeconds: {{ .Values.informationservice.liveness.periodSeconds }}
         volumeMounts:
-        - name: {{ include "common.name.enrichmentservice" . }}-enrichment-config
-          mountPath: /opt/app/enrichment-coordinator-service/config
-        - name: {{ include "common.name.enrichmentservice" . }}-vardata
-          mountPath: /var/enrichment-coordinator-service
+        - name: {{ include "common.name.informationservice" . }}-information-config
+          mountPath: /opt/app/information-coordinator-service/config
+        - name: {{ include "common.name.informationservice" . }}-vardata
+          mountPath: /var/information-coordinator-service
       volumes:
-        - name: {{ include "common.name.enrichmentservice" . }}-enrichment-config
+        - name: {{ include "common.name.informationservice" . }}-information-config
           configMap:
-            name: {{ include "common.name.enrichmentservice" . }}-configmap
+            name: {{ include "common.name.informationservice" . }}-configmap
 
   volumeClaimTemplates:
     - metadata:
-        name: {{ include "common.name.enrichmentservice" . }}-vardata
+        name: {{ include "common.name.informationservice" . }}-vardata
       spec:
         accessModes: [ ReadWriteOnce ]
-        storageClassName: "{{ .Values.enrichmentservice.persistence.storageClassName }}"        
+        storageClassName: "{{ .Values.informationservice.persistence.storageClassName }}"
         resources:
           requests:
-            storage: "{{ .Values.enrichmentservice.persistence.size }}"
+            storage: "{{ .Values.informationservice.persistence.size }}"