From c0da7339e1e130a787b72e79eeb24d7ad943f0f7 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Wed, 17 Jul 2019 18:02:21 +0900 Subject: [PATCH] Fix invalid helloworld example This patch makes a tiny fix which removes invalid setting in configuration example. After https://github.com/knative/serving/pull/4731, `periodSeconds` needs to be set with `failureThreshold` and `timeoutSeconds`. This patch simply removes `periodSeconds` from the config. --- test/test_images/helloworld/helloworld.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_images/helloworld/helloworld.yaml b/test/test_images/helloworld/helloworld.yaml index 81438e22e8d8..8fd765357364 100644 --- a/test/test_images/helloworld/helloworld.yaml +++ b/test/test_images/helloworld/helloworld.yaml @@ -28,7 +28,6 @@ spec: httpGet: path: / initialDelaySeconds: 3 - periodSeconds: 3 --- apiVersion: serving.knative.dev/v1alpha1 kind: Route