deployment.yaml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
apiVersion: apps/v1 kind: Deployment metadata: name: argus-core labels: app: argus-core spec: replicas: 4 selector: matchLabels: app: argus-core template: metadata: labels: app: argus-core spec: containers: - name: argus-core image: brijeshwawdhane/argus-core:0.1.0-alpha.7 ports: - containerPort: 8080 envFrom: - secretRef: name: argus-secrets |