From a56093f9fa7f3097b5091820b84ecaee180c5942 Mon Sep 17 00:00:00 2001 From: Fabian Schindler <fabian.schindler.strauss@gmail.com> Date: Mon, 9 Nov 2020 12:25:24 +0100 Subject: [PATCH] Adding service and deployment yamls for registrar --- chart/templates/registrar-deployment.yaml | 93 +++++++++++++++++++++++ chart/templates/registrar-service.yaml | 17 +++++ 2 files changed, 110 insertions(+) create mode 100644 chart/templates/registrar-deployment.yaml create mode 100644 chart/templates/registrar-service.yaml diff --git a/chart/templates/registrar-deployment.yaml b/chart/templates/registrar-deployment.yaml new file mode 100644 index 00000000..e12537f8 --- /dev/null +++ b/chart/templates/registrar-deployment.yaml @@ -0,0 +1,93 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "vs.fullname" . }}-registrar + labels: + {{- include "vs.labels" . | nindent 4 }} + app.kubernetes.io/service: registrar +spec: + replicas: {{ .Values.registrar.replicaCount }} + selector: + matchLabels: + {{- include "vs.selectorLabels" . | nindent 6 }} + app.kubernetes.io/service: registrar + strategy: + rollingUpdate: + maxUnavailable: 0 + type: RollingUpdate + template: + metadata: + annotations: + prometheus.io/scrape: "false" + labels: + {{- include "vs.selectorLabels" . | nindent 8 }} + app.kubernetes.io/service: registrar + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + containers: + - name: {{ .Chart.Name }}-registrar + image: "registry.gitlab.eox.at/esa/prism/vs/pvs_core:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.registrar.resources | nindent 12 }} + args: + - /run-httpd.sh + env: + {{- range $key, $value := .Values.config.general }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + {{- range $key, $value := .Values.config.database }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + - name: DB_HOST + value: {{ .Release.Name }}-database + {{- range $key, $value := .Values.config.django }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + {{- range $key, $value := .Values.config.objectStorage.data }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + - name: INIT_SCRIPTS + value: /configure.sh /init-db.sh /initialized.sh + - name: INSTALL_DIR + value: /var/www/pvs/dev/ + - name: INSTANCE_ID + value: prism-view-server_registrar + - name: STARTUP_SCRIPTS + value: /wait-initialized.sh + - name: WAIT_SERVICES + value: {{ .Release.Name }}-database:{{ .Values.config.database.DB_PORT }} + volumeMounts: + - mountPath: /init-db.sh + name: init-db + subPath: init-db.sh + {{- with .Values.registrar.affinity | default .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + volumes: + - configMap: + items: + - key: init-db.sh + path: init-db.sh + name: {{ include "vs.fullname" . }}-init-db + name: init-db diff --git a/chart/templates/registrar-service.yaml b/chart/templates/registrar-service.yaml new file mode 100644 index 00000000..6762a3b0 --- /dev/null +++ b/chart/templates/registrar-service.yaml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "vs.fullname" . }}-registrar + labels: + {{- include "vs.labels" . | nindent 4 }} + app.kubernetes.io/service: registrar +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "vs.selectorLabels" . | nindent 4 }} + app.kubernetes.io/service: registrar -- GitLab