summaryrefslogtreecommitdiffstats
path: root/src/helm-charts/clearwater/templates/chronos-depl.yaml
blob: 8ed87352262bb8a88eb72dd9f30dd36f0e3c9a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  labels:
    service: chronos
  name: chronos
spec:
  replicas: 1
  template:
    metadata:
      labels:
        service: chronos
    spec:
      terminationGracePeriodSeconds: 120
      containers:
      - image: "{{ .Values.image.path }}/chronos:{{ .Values.image.tag }}"
        imagePullPolicy: Always
        name: chronos
        ports:
        - containerPort: 22
        - containerPort: 7253
        envFrom:
        - configMapRef:
              name: {{ .Values.config.configmaps }}
        env:
        - name: MY_POD_IP
          valueFrom:
            fieldRef:
              fieldPath: status.podIP
        livenessProbe:
          tcpSocket:
            port: 7253
          periodSeconds: 10
          failureThreshold: 9
        readinessProbe:
          tcpSocket:
            port: 7253
        volumeMounts:
        - name: chronoslogs
          mountPath: /var/log/chronos
        lifecycle:
          preStop:
            exec:
              command: ["/bin/bash", "-c", "/usr/bin/pre-stop"]
      - image: busybox
        name: tailer
        command: [ "tail", "-F", "/var/log/chronos/chronos_current.txt" ]
        volumeMounts:
        - name: chronoslogs
          mountPath: /var/log/chronos
      volumes:
      - name: chronoslogs
        emptyDir: {}
      restartPolicy: Always