diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·49+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·49+0000 |
commit | cdf25193a4a2c3537b5fbcd8973df3b5fdba8322 (patch) | |
tree | 259670a1428bbdf419477c8427a2837f8c521648 /fun/quinistry/k8s/parent.yaml | |
parent | 47fc60a032a939329521034fe1b2afdeace610ac (diff) | |
parent | 86ff65a36ca9e9cc9aaa6b845eecb9c6c7fa488a (diff) |
merge(quinistry): Integrate at //fun/quinistry r/260
This is too historically interesting for me to lose it.
Diffstat (limited to 'fun/quinistry/k8s/parent.yaml')
-rw-r--r-- | fun/quinistry/k8s/parent.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fun/quinistry/k8s/parent.yaml b/fun/quinistry/k8s/parent.yaml new file mode 100644 index 000000000000..0db2fe300e1e --- /dev/null +++ b/fun/quinistry/k8s/parent.yaml @@ -0,0 +1,27 @@ +# This is a bootstrapped Quinistry DaemonSet. The initial image +# comes from Docker Hub +--- +apiVersion: extensions/v1beta1 +kind: DaemonSet +metadata: + name: quinistry + labels: + k8s-app: quinistry + quinistry/role: parent + quinistry/generation: '1' +spec: + template: + metadata: + labels: + k8s-app: quinistry + quinistry/role: parent + quinistry/generation: '1' + spec: + containers: + - name: quinistry + # Bootstrap via Docker Hub (or any other registry) + image: tazjin/quinistry + ports: + - name: registry + containerPort: 8080 + hostPort: 5000 |