mirror of
https://github.com/kemko/slurm.git
synced 2026-01-01 15:55:48 +03:00
25 lines
421 B
YAML
25 lines
421 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: my-deployment
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: my-app
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 1
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: my-app
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.12
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|