Skip to content

Instantly share code, notes, and snippets.

@ChrisChinchilla
Created April 20, 2020 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisChinchilla/df44ddb8ded64d83b53b72fbda539644 to your computer and use it in GitHub Desktop.
Save ChrisChinchilla/df44ddb8ded64d83b53b72fbda539644 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: product-fe
spec:
replicas: 1
selector:
matchLabels:
app: ecommerce
tier: frontend
template:
metadata:
labels:
app: ecommerce
tier: frontend
spec:
containers:
- name: client
image: chrischinchilla/humanitech-product-fe
imagePullPolicy: "IfNotPresent"
ports:
- name: http
containerPort: 8080
env:
- name: PRODUCT_BE_SERVER_URL
value: product-be
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment