aboutsummaryrefslogtreecommitdiffstats
path: root/functest_kubernetes/ims/ralf-depl.yaml
blob: 95a26b7cb6d4229184f8480887451fae1a6ee83e (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
55
apiVersion: apps/v1
kind: Deployment
metadata:
  name: ralf
spec:
  replicas: 1
  selector:
    matchLabels:
      service: ralf
  template:
    metadata:
      labels:
        service: ralf
        snmp: enabled
    spec:
      initContainers:
        - name: wait-on-cassandra
          image: busybox:1.28
          command: ['sh', '-c', 'until nslookup cassandra; do echo waiting for cassandra to start ...; sleep 2; done']
      containers:
      - image: "ollivier/clearwater-ralf:latest"
        name: ralf
        ports:
        - containerPort: 22
        - containerPort: 10888
        envFrom:
        - configMapRef:
              name: env-vars
        env:
        - name: MY_POD_IP
          valueFrom:
            fieldRef:
              fieldPath: status.podIP
        livenessProbe:
          tcpSocket:
            port: 10888
          initialDelaySeconds: 30
        readinessProbe:
          tcpSocket:
            port: 10888
        volumeMounts:
        - name: ralflogs
          mountPath: /var/log/ralf
      - image: busybox
        name: tailer
        command: [ "tail", "-F", "/var/log/ralf/ralf_current.txt" ]
        volumeMounts:
        - name: ralflogs
          mountPath: /var/log/ralf
      volumes:
      - name: ralflogs
        emptyDir: {}
      imagePullSecrets:
      - name: ~
      restartPolicy: Always