26 lines
470 B
YAML
26 lines
470 B
YAML
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment-2
|
|
namespace: default
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: RollingUpdate
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
version: v2
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: registry.cn-hangzhou.aliyuncs.com/offends/demo:nginx-alpine-v2
|
|
ports:
|
|
- containerPort: 80 |