You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/samples/MicroserviceDemo/k8s/public-website-deployment.yaml

31 lines
813 B

apiVersion: apps/v1
kind: Deployment
metadata:
name: public-website
spec:
selector:
matchLabels:
app: public-website
replicas: 1
template:
metadata:
labels:
app: public-website
spec:
containers:
- name: public-website
image: "volosoft/microservice-demo-public-website"
env:
- name: ASPNETCORE_ENVIRONMENT
value: Development
- name: ASPNETCORE_URLS
value: http://0.0.0.0:80
- name: AuthServer__Authority
value: http://auth-server:51511
- name: Redis__Configuration
value: redis
- name: RemoteServices__Default__BaseUrl
value: http://public-website-gateway/
ports:
- name: http
containerPort: 80