Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: kpb-api-warehouse
- labels:
- app: kpb-api-warehouse
- spec:
- replicas: 3
- selector:
- matchLabels:
- app: kpb-api-warehouse
- template:
- metadata:
- labels:
- app: kpb-api-warehouse
- spec:
- containers:
- - name: kpb-api-warehouse
- image: gcr.io/projeto/kpb-api-warehouse:latest
- env:
- - name: NODE_ENV
- value: stag
- - name: PORT
- value: "3000"
- - name: GCLOUD_PROJECT
- value: "projeto"
- - name: GOOGLE_APPLICATION_CREDENTIALS
- value: "/kpb-credential-ec430ca57511.json"
- - name: ENC_FILE
- value: "./app/kms/kpb-api-warehouse.staging.json.enc"
- ports:
- - containerPort: 3000
- volumeMounts:
- - name: kms-google
- mountPath: /app/kms/
- volumes:
- - name: kms-google
- emptyDir: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement