mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
22 lines
371 B
YAML
22 lines
371 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx0-deployment
|
|
labels:
|
|
app: nginx0-deployment
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: nginx0
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx0
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: registry.k8s.io/nginx:1.7.9
|
|
ports:
|
|
- containerPort: 80
|