Add Pod and Deployment examples

This commit is contained in:
B4D_US3R 2026-03-11 20:42:07 +05:00
commit fd21b566f1
3 changed files with 34 additions and 0 deletions

10
00-pod/pod.yaml Normal file
View file

@ -0,0 +1,10 @@
apiVersion: v1
kind: Pod
metadata:
name: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80