From 1de9257854f652abc736899fa28909d1ba3710e5 Mon Sep 17 00:00:00 2001 From: Danny Kulchinsky Date: Wed, 2 Jan 2019 10:20:10 -0500 Subject: [PATCH] fix typo and version bump Signed-off-by: Danny Kulchinsky --- extras/example-with-kubeconfig.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extras/example-with-kubeconfig.yaml b/extras/example-with-kubeconfig.yaml index 21e5f40..08b9e7c 100644 --- a/extras/example-with-kubeconfig.yaml +++ b/extras/example-with-kubeconfig.yaml @@ -5,19 +5,19 @@ metadata: name: goldpinger labels: app: goldpinger - version: "1.0.0" + version: "1.1.0" spec: updateStrategy: type: RollingUpdate selector: matchLabels: app: goldpinger - version: "1.0.0" + version: "1.1.0" template: metadata: labels: app: goldpinger - version: "1.0.0" + version: "1.1.0" spec: # if you'd like to use a secret to inject a kubeconfig, you can do it like this volumes: @@ -34,7 +34,7 @@ spec: # kubeconfig needs to match the location of what's injected in the secret # if not specified goldpinger will default to using in-cluster config - name: KUBECONFIG - value: "./kube/config" + value: "/.kube/config" # refresh interval (seconds) tells goldpinger to call every other instance with that frequency (set to 0 to disable) - name: REFRESH_INTERVAL value: "30" @@ -43,7 +43,7 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: "docker.io/mynamespace-replaceme/goldpinger:1.0.0" + image: "docker.io/mynamespace-replaceme/goldpinger:1.1.0" ports: - containerPort: 80 name: http