Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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