blob: 0db2fe300e1e0490e9635687436088909825e009 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
|