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/parent.yaml | |
parent | 6e7262763ca7d0d94324477907161bd3907c9c1e (diff) |
chore(quinistry): Prepare for depot merge
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 |