summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_app/custom-bono-svc/deployment-svc.yaml
blob: cde909bcd03b0cc1497892b84dc3b452a65b0644 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: busybox
spec:
  strategy:
    rollingUpdate:
      maxSurge: 10%
      maxUnavailable: 0
  selector:
    matchLabels:
      app: busybox
  replicas: 3
  template:
    metadata:
      labels:
        app: busybox
      annotations:
        networks: '[
          { "name": "calico"},
          { "name": "weave"}
        ]'
    spec:
      containers:
      - name: busybox
        image: bcmt-registry:5000/busybox:latest
        command: ["top"]
        stdin: true
        tty: true
      dnsPolicy: Default
apiVersion: v1
kind: ServiceAccount
metadata:
  labels:
    k8s-app: nginx
  name: nginx
  namespace: nginx

---

kind: Deployment
apiVersion: apps/v1beta2
metadata:
  labels:
    k8s-app: nginx
  name: nginx
  namespace: nginx
spec:
  replicas: 1
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      k8s-app: nginx
  template:
    metadata:
      labels:
        k8s-app: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:2
        ports:
        - containerPort: 80
          protocol: TCP
        args:
---
# ------------------- Dashboard Service ------------------- #

kind: Service
apiVersion: v1
metadata:
  labels:
    k8s-app: nginx
  name: nginx
  namespace: nginx
spec:
  type: NodePort
  ports:
  - port: 80
    nodePort: 31001   
  selector:
    k8s-app: nginx