github.com/azunymous/cdx@v0.0.0-20201122180449-fbb46cc4d252/kubernetes-resources/base/deployment.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 name: cdx 5 labels: 6 app: cdx 7 spec: 8 replicas: 1 9 template: 10 metadata: 11 name: cdx 12 labels: 13 app: cdx 14 spec: 15 containers: 16 - name: cdx 17 image: cdx-image 18 args: 19 - share 20 - start 21 - --insecure 22 imagePullPolicy: IfNotPresent 23 restartPolicy: Always 24 selector: 25 matchLabels: 26 app: cdx