...
1package kube
2
3deployment: dishwasher: spec: {
4 replicas: 5
5 template: spec: {
6 volumes: [{
7 }, {
8 }, {
9 name: "secret-ssh-key"
10 secret: secretName: "dishwasher-secrets"
11 }]
12 containers: [{
13 image: "gcr.io/myproj/dishwasher:v0.2.13"
14 volumeMounts: [{
15 }, {
16 mountPath: "/sslcerts"
17 }, {
18 mountPath: "/etc/certs"
19 name: "secret-ssh-key"
20 readOnly: true
21 }]
22 args: [
23 "-env=prod",
24 "-ssh-tunnel-key=/etc/certs/tunnel-private.pem",
25 "-logdir=/logs",
26 "-event-server=events:7788",
27 ]
28 }]
29 }
30}
View as plain text