-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yml
40 lines (40 loc) · 1.04 KB
/
deployment.yml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: keel
namespace: spinnaker
spec:
replicas: 1
template:
spec:
containers:
- env:
- name: JAVA_OPTS
value: -XX:MaxRAMPercentage=50.0
image: us-docker.pkg.dev/spinnaker-community/docker/keel:spinnaker-master-latest-unvalidated
name: keel
ports:
- name: traffic-port
containerPort: 7010
protocol: TCP
readinessProbe:
httpGet:
port: traffic-port
path: /health
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
volumeMounts:
- mountPath: /opt/spinnaker/config
name: keel-config-volume
- mountPath: /var/secrets
name: spinnaker-secrets-volume
terminationGracePeriodSeconds: 720
volumes:
- name: keel-config-volume
secret:
secretName: keel-config
- name: spinnaker-secrets-volume
secret:
secretName: spinnaker-secrets