kubernetes-yaml/learn/learn-kubernetes-master/kiamol/ch09/vweb-strategies/vweb-recreate-v2.yaml

27 lines
421 B
YAML
Raw Permalink Normal View History

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