28 lines
515 B
YAML
28 lines
515 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: blue
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: blue
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: blue
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: nginx
|
|
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: color
|
|
operator: In
|
|
values:
|
|
- blue
|