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.
36 lines
1010 B
36 lines
1010 B
6 years ago
|
apiVersion: extensions/v1beta1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
io.kompose.service: auth-server
|
||
|
name: auth-server
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
strategy: {}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
io.kompose.service: auth-server
|
||
|
spec:
|
||
|
containers:
|
||
|
- env:
|
||
|
- name: ASPNETCORE_ENVIRONMENT
|
||
|
value: Development
|
||
|
- name: ASPNETCORE_URLS
|
||
|
value: http://0.0.0.0:64999
|
||
|
- name: ConnectionStrings__Default
|
||
|
value: Server=sqlserver;Database=MsDemo_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated
|
||
|
Security=false
|
||
|
- name: RabbitMQ__Connections__Default__HostName
|
||
|
value: rabbitmq
|
||
|
- name: Redis__Configuration
|
||
|
value: redis
|
||
|
image: microservice-demo/auth-server:latest
|
||
|
name: auth-server
|
||
|
ports:
|
||
|
- containerPort: 64999
|
||
|
resources: {}
|
||
|
imagePullPolicy: Never
|
||
|
restartPolicy: Always
|
||
|
status: {}
|