54 lines
1.2 KiB
YAML
Raw Normal View History

2018-06-21 17:10:23 +02:00
replicaCount: 1
clusterName: eshop-aks
2018-06-21 17:53:22 +02:00
pathBase: /mobilemarketingapigw
2018-06-21 17:10:23 +02:00
image:
repository: eshop/ocelotapigw
tag: latest
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
ingress:
2018-07-03 19:07:37 +02:00
enabled: true
2018-06-21 17:10:23 +02:00
annotations: {}
tls: []
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
# env defines the environment variables that will be declared in the pod
env:
urls:
# configmap declares variables which value is taken from the config map defined in template configmap.yaml (name is name of var and key the key in configmap).
configmap:
- name: IdentityUrl
2018-06-21 17:10:23 +02:00
key: internalurls__identity
- name: CatalogUrlHC
key: internalurls__catalog__hc
- name: BasketUrlHC
key: internalurls__basket__hc
- name: IdentityUrlHC
key: internalurls__identity__hc
- name: OrderingUrlHC
key: internalurls__ordering__hc
- name: MarketingUrlHC
key: internalurls__marketing__hc
- name: PaymentUrlHC
key: internalurls__payment__hc
- name: LocationUrlHC
key: internalurls__location__hc
2018-06-21 17:10:23 +02:00
# values define environment variables with a fixed value (no configmap involved) (name is name of var, and value is its value)
values:
- name: ASPNETCORE_ENVIRONMENT
value: Development