mirror of https://github.com/abpframework/abp
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.
50 lines
1.6 KiB
50 lines
1.6 KiB
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: internal-gateway
|
|
name: internal-gateway
|
|
spec:
|
|
replicas: 1
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: internal-gateway
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: ASPNETCORE_ENVIRONMENT
|
|
value: Development
|
|
- name: ASPNETCORE_URLS
|
|
value: http://0.0.0.0:80
|
|
- name: AuthServer__Authority
|
|
value: http://auth-server:64999
|
|
- name: ConnectionStrings__Default
|
|
value: Server=sqlserver;Database=MsDemo_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated
|
|
Security=false
|
|
- name: GlobalConfiguration__BaseUrl
|
|
value: http://internal-gateway
|
|
- name: ReRoutes__0__DownstreamHostAndPorts__Host
|
|
value: identity-service
|
|
- name: ReRoutes__0__DownstreamHostAndPorts__Port
|
|
value: "80"
|
|
- name: ReRoutes__1__DownstreamHostAndPorts__Host
|
|
value: product-service
|
|
- name: ReRoutes__1__DownstreamHostAndPorts__Port
|
|
value: "80"
|
|
- name: ReRoutes__2__DownstreamHostAndPorts__Host
|
|
value: blogging-service
|
|
- name: ReRoutes__2__DownstreamHostAndPorts__Port
|
|
value: "80"
|
|
- name: Redis__Configuration
|
|
value: redis
|
|
image: microservice-demo/internal-gateway:latest
|
|
name: internal-gateway
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
imagePullPolicy: Never
|
|
restartPolicy: Always
|
|
status: {}
|