diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·48+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·48+0000 |
commit | 86ff65a36ca9e9cc9aaa6b845eecb9c6c7fa488a (patch) | |
tree | 6c2a15659875d8b3e633ca7880e71d8dd6a9f530 /fun/quinistry/k8s/child.yaml | |
parent | 6e7262763ca7d0d94324477907161bd3907c9c1e (diff) |
chore(quinistry): Prepare for depot merge
Diffstat (limited to 'fun/quinistry/k8s/child.yaml')
-rw-r--r-- | fun/quinistry/k8s/child.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fun/quinistry/k8s/child.yaml b/fun/quinistry/k8s/child.yaml new file mode 100644 index 000000000000..aa2e318262cd --- /dev/null +++ b/fun/quinistry/k8s/child.yaml @@ -0,0 +1,27 @@ +# This is a child quinistry, running via an image served off the parent. +--- +apiVersion: extensions/v1beta1 +kind: DaemonSet +metadata: + name: quinistry-gen2 + labels: + k8s-app: quinistry + quinistry/role: child + quinistry/generation: '2' +spec: + template: + metadata: + labels: + k8s-app: quinistry + quinistry/role: child + quinistry/generation: '2' + spec: + containers: + - name: quinistry + # Bootstrap via Docker Hub (or any other registry) + image: localhost:5000/quinistry + ports: + - name: registry + containerPort: 8080 + # Incremented hostPort, + hostPort: 5001 |