From 3e6b79e26a01a4b457b005cf77c1df3f5a50b934 Mon Sep 17 00:00:00 2001 From: Laura Sofia Enriquez Date: Sat, 3 Feb 2018 01:16:08 -0300 Subject: Clearwater Helm Chart Custom chart to deploy Clearwater with k8s. This patch depends of gerrit #50467 Change-Id: I5621909d768e6d91668aad9aae70869ae10acecf JIRA: CONTAINER-22 Signed-off-by: Laura Sofia Enriquez --- .../clearwater/templates/astaire-depl.yaml | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/helm-charts/clearwater/templates/astaire-depl.yaml (limited to 'src/helm-charts/clearwater/templates/astaire-depl.yaml') diff --git a/src/helm-charts/clearwater/templates/astaire-depl.yaml b/src/helm-charts/clearwater/templates/astaire-depl.yaml new file mode 100644 index 0000000..14296b4 --- /dev/null +++ b/src/helm-charts/clearwater/templates/astaire-depl.yaml @@ -0,0 +1,53 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: astaire +spec: + replicas: 1 + template: + metadata: + labels: + service: astaire + spec: + terminationGracePeriodSeconds: 120 + containers: + - image: "{{ .Values.image.path }}/astaire:{{ .Values.image.tag }}" + imagePullPolicy: Always + name: astaire + ports: + - containerPort: 22 + - containerPort: 11211 + - containerPort: 11311 + envFrom: + - configMapRef: + name: {{ .Values.config.configmaps }} + env: + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + livenessProbe: + tcpSocket: + port: 11311 + periodSeconds: 10 + failureThreshold: 9 + readinessProbe: + tcpSocket: + port: 11311 + volumeMounts: + - name: astairelogs + mountPath: /var/log/astaire + lifecycle: + preStop: + exec: + command: ["/bin/bash", "-c", "/usr/bin/pre-stop"] + - image: busybox + name: tailer + command: [ "tail", "-F", "/var/log/astaire/astaire_current.txt" ] + volumeMounts: + - name: astairelogs + mountPath: /var/log/astaire + volumes: + - name: astairelogs + emptyDir: {} + restartPolicy: Always -- cgit 1.2.3-korg