You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- kind: Deployment
- apiVersion: apps/v1
- metadata:
- name: pcm-ceph-rpc-deployment
- namespace: jcce-system
- labels:
- k8s-app: pcm-ceph-rpc
- spec:
- replicas: 1
- selector:
- matchLabels:
- k8s-app: pcm-ceph-rpc
- template:
- metadata:
- name: pcm-ceph-rpc
- labels:
- k8s-app: pcm-ceph-rpc
- spec:
- imagePullSecrets:
- - name: SECRET_NAME
- containers:
- - name: pcm-ceph-rpc
- image: IMAGE_NAME
- resources: {}
- imagePullPolicy: Always
- securityContext:
- privileged: false
- procMount: Default
- ports:
- - containerPort: 80
- volumeMounts: []
- volumes: []
- restartPolicy: Always
- terminationGracePeriodSeconds: 30
- dnsPolicy: ClusterFirst
- securityContext: {}
- schedulerName: default-scheduler
- strategy:
- type: RollingUpdate
- rollingUpdate:
- maxUnavailable: 25%
- maxSurge: 25%
- revisionHistoryLimit: 10
- progressDeadlineSeconds: 600
|