mirror of
https://github.com/slurm-personal/school-dev-k8s.git
synced 2026-06-27 13:50:24 +00:00
14 lines
210 B
YAML
14 lines
210 B
YAML
---
|
|
# file: practice/2.application-abstractions/1.pod/pod.yaml
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: my-pod
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.12
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|
|
...
|