From 6e4d4a4a93435ae3618cab55683ac5a01290b60a Mon Sep 17 00:00:00 2001 From: Adam Schepis Date: Wed, 21 Feb 2018 18:19:24 -0500 Subject: [PATCH] Fix serving cert path config in deployment spec The volume was mounted at `/var/run/serving/certs` but the container was sending an arg to look at `/var/run/serving-cert` (missing the trailing `s`) --- docs/walkthrough.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/walkthrough.md b/docs/walkthrough.md index 069755c2..bdc11b7e 100644 --- a/docs/walkthrough.md +++ b/docs/walkthrough.md @@ -245,8 +245,8 @@ spec: - --secure-port=6443 - --logtostderr=true # use your serving certs - - --tls-cert-file=/var/run/serving-cert/tls.crt - - --tls-private-key-file=/var/run/serving-cert/tls.key + - --tls-cert-file=/var/run/serving-certs/tls.crt + - --tls-private-key-file=/var/run/serving-certs/tls.key # Prometheus is running in the same pod, so you can say your Prometheus # is at `localhost` - --prometheus-url=http://localhost:9090