...
1package kube
2
3deployment: pastrychef: spec: template: spec: {
4 volumes: [{
5 }, {
6 name: "secret-ssh-key"
7 secret: secretName: "secrets"
8 }]
9 containers: [{
10 image: "gcr.io/myproj/pastrychef:v0.1.15"
11 volumeMounts: [{
12 }, {
13 name: "secret-ssh-key"
14 }]
15 args: [
16 "-env=prod",
17 "-ssh-tunnel-key=/etc/certs/tunnel-private.pem",
18 "-logdir=/logs",
19 "-event-server=events:7788",
20 "-reconnect-delay=1m",
21 "-etcd=etcd:2379",
22 "-recovery-overlap=10000",
23 ]
24 }]
25}
View as plain text