File tree Expand file tree Collapse file tree 2 files changed +46
-40
lines changed Expand file tree Collapse file tree 2 files changed +46
-40
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : ReplicationController
3
+ metadata :
4
+ labels :
5
+ app : kubernetes-dashboard-canary
6
+ version : canary
7
+ name : kubernetes-dashboard-canary
8
+ namespace : kube-system
9
+ spec :
10
+ replicas : 1
11
+ selector :
12
+ app : kubernetes-dashboard-canary
13
+ version : canary
14
+ template :
15
+ metadata :
16
+ labels :
17
+ app : kubernetes-dashboard-canary
18
+ version : canary
19
+ spec :
20
+ containers :
21
+ - name : kubernetes-dashboard-canary
22
+ image : gcr.io/google_containers/kubernetes-dashboard-amd64:canary
23
+ imagePullPolicy : Always
24
+ ports :
25
+ - containerPort : 9090
26
+ protocol : TCP
27
+ livenessProbe :
28
+ httpGet :
29
+ path : /
30
+ port : 9090
31
+ initialDelaySeconds : 30
32
+ timeoutSeconds : 30
33
+ ---
34
+ apiVersion : v1
35
+ kind : Service
36
+ metadata :
37
+ labels :
38
+ app : kubernetes-dashboard-canary
39
+ name : dashboard-canary
40
+ namespace : kube-system
41
+ spec :
42
+ ports :
43
+ - port : 80
44
+ targetPort : 9090
45
+ selector :
46
+ app : kubernetes-dashboard-canary
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments