Add configmap demo to podinfo

This commit is contained in:
stefanprodan
2019-02-13 00:51:44 +02:00
parent 702f4fcd14
commit 4ff67a85ce
2 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -11,5 +11,5 @@ data:
config.yaml: |-
# http settings
http-client-timeout: 1m
http-server-timeout: 30s
http-server-timeout: {{ .Values.httpServer.timeout }}
http-server-shutdown-timeout: 5s
+8 -5
View File
@@ -11,12 +11,12 @@ service:
hpa:
enabled: true
minReplicas: 2
maxReplicas: 4
maxReplicas: 2
cpu: 80
memory: 512Mi
canary:
enabled: false
enabled: true
istioIngress:
enabled: false
# Istio ingress gateway name
@@ -25,7 +25,7 @@ canary:
host:
analysis:
# schedule interval (default 60s)
interval: 10s
interval: 15s
# max number of failed metric checks before rollback
threshold: 10
# max traffic percentage routed to canary
@@ -42,7 +42,7 @@ canary:
# milliseconds
latency: 500
loadtest:
enabled: true
enabled: false
# load tester address
url: http://flagger-loadtester.test/
@@ -67,4 +67,7 @@ message: #UI greetings
faults:
delay: false
error: false
error: false
httpServer:
timeout: 30s