Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created November 30, 2019 03:47
apiVersion: "apps/v1"
kind: "Deployment"
metadata:
name: "outsrc-front-deployment"
namespace: "outsrc"
labels:
service: "front"
spec:
replicas: 1
selector:
matchLabels:
service: "front"
template:
metadata:
labels:
service: "front"
spec:
containers:
- name: "outsrc-demo-front"
image: "gcr.io/outsrc/outsrc-demo-front:1.0.0"
imagePullPolicy: "Always"
ports:
- containerPort: 3000
env:
- name: "PORT"
value: "3000"
- name: "API_URL"
value: "https://outsrc.dev/api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment