kubernetes-yaml/learn/learn-kubernetes-master/kiamol/ch09/lab/v1/vweb-v1.yaml

27 lines
432 B
YAML
Raw Permalink Normal View History

apiVersion: apps/v1
kind: Deployment
metadata:
name: vweb-v1
labels:
kiamol: ch09-lab
app: vweb
spec:
replicas: 4
selector:
matchLabels:
app: vweb
version: v1
template:
metadata:
labels:
app: vweb
version: v1
spec:
containers:
- name: web
image: kiamol/ch09-vweb:v1
ports:
- name: http
containerPort: 80