mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
30 lines
614 B
YAML
30 lines
614 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web-disk
|
|
labels:
|
|
app: web-disk
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: web-disk
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web-disk
|
|
spec:
|
|
containers:
|
|
- name: web-disk
|
|
image: nginx:latest
|
|
affinity:
|
|
podAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
- labelSelector:
|
|
matchExpressions:
|
|
- key: app
|
|
operator: In
|
|
values:
|
|
- app-disk
|
|
topologyKey: "kubernetes.io/hostname" |