Merge pull request #899 from mrueg/coredns-ready

coredns: Add readinessProbe
This commit is contained in:
Erik Wilson 2019-11-04 14:25:45 -07:00 committed by GitHub
commit 931f63073f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -55,6 +55,7 @@ data:
.:53 {
errors
health
ready
kubernetes %{CLUSTER_DOMAIN}% in-addr.arpa ip6.arpa {
pods insecure
upstream
@ -142,6 +143,15 @@ spec:
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
readinessProbe:
httpGet:
path: /ready
port: 8181
scheme: HTTP
initialDelaySeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
dnsPolicy: Default
volumes:
- name: config-volume

File diff suppressed because one or more lines are too long