X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=helm%2Fe2mgr%2Ftemplates%2Fdeployment.yaml;h=a4fafa525426d25b57b11a2b866a3fe824985999;hb=1b131151d8b1fae636eb6e92e1bf812d9d80584e;hp=f5cbafe9f83f323fe9e6386434ab4a46defc8c82;hpb=393136323474cc68318eda4a674d91cc6aca0ffc;p=ric-plt%2Fric-dep.git diff --git a/helm/e2mgr/templates/deployment.yaml b/helm/e2mgr/templates/deployment.yaml index f5cbafe..a4fafa5 100644 --- a/helm/e2mgr/templates/deployment.yaml +++ b/helm/e2mgr/templates/deployment.yaml @@ -45,6 +45,14 @@ spec: hostname: {{ include "common.name.e2mgr" . }} imagePullSecrets: - name: {{ include "common.dockerregistry.credential" $imagectx }} + initContainers: + - name: redis-init + image: "redis" + command: + - "/bin/sh" + args: + - '-c' + - "redis-cli -h {{ include "common.servicename.dbaas.tcp" . }} -p {{ include "common.serviceport.dbaas.redis" . }} SETNX \"{e2Manager},GENERAL\" \"{\\\"enableRic\\\":true}\"" containers: - name: {{ include "common.containername.e2mgr" . }} image: {{ include "common.dockerregistry.url" $imagectx }}/{{ .Values.e2mgr.image.name }}:{{ .Values.e2mgr.image.tag }} @@ -72,6 +80,24 @@ spec: tty: true securityContext: privileged: {{ .Values.e2mgr.privilegedmode}} + + {{- if eq .Values.e2mgr.liveness.enabled true }} + livenessProbe: + httpGet: + path: {{ .Values.e2mgr.liveness.api }} + port: {{ include "common.serviceport.e2mgr.http" . }} + initialDelaySeconds: {{ .Values.e2mgr.liveness.initialDelaySeconds }} + periodSeconds: {{ .Values.e2mgr.liveness.periodSeconds }} + {{- end }} + {{- if eq .Values.e2mgr.readiness.enabled true }} + readinessProbe: + httpGet: + path: {{ .Values.e2mgr.readiness.api }} + port: {{ include "common.serviceport.e2mgr.http" . }} + initialDelaySeconds: {{ .Values.e2mgr.liveness.initialDelaySeconds }} + periodSeconds: {{ .Values.e2mgr.liveness.periodSeconds }} + {{- end }} + volumes: - name: local-router-file configMap: