File tree Expand file tree Collapse file tree
labs/kubernetes/deployments-lab Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,8 +135,19 @@ This repository was created to:
135135 - [x] Create Pods
136136 - [x] Inspect Pods
137137 - [x] Delete Pods
138- - [ ] Deployments
138+ - [x] Deployments
139+ - [x] Deployment Fundamentals
140+ - [x] ReplicaSets
141+ - [x] Self-Healing
142+ - [ ] Scaling Deployments
139143- [ ] Services
144+ - [ ] Labels
145+ - [ ] Selectors
146+ - [ ] ClusterIP
147+ - [ ] NodePort
148+ - [ ] LoadBalancer
149+ - [ ] Exposing Deployments
150+ - [ ] Pod Networking
140151- [ ] ConfigMaps
141152- [ ] Secrets
142153- [ ] Helm
Original file line number Diff line number Diff line change 1+ apiVersion : apps/v1
2+
3+ kind : Deployment
4+
5+ metadata :
6+ name : hello-deployment
7+
8+ spec :
9+ replicas : 1
10+
11+ selector :
12+ matchLabels :
13+ app : hello
14+
15+ template :
16+ metadata :
17+ labels :
18+ app : hello
19+
20+ spec :
21+ containers :
22+ - name : nginx-container
23+ image : nginx:latest
24+
25+ ports :
26+ - containerPort : 80
You can’t perform that action at this time.
0 commit comments