From 8fb4aca231279090c06b6da451d0f9d016e70876 Mon Sep 17 00:00:00 2001 From: yiqunding Date: Fri, 23 Mar 2018 02:14:47 +0800 Subject: [PATCH] This change fixes an error in a yaml file in the fission-core chart. (#563) The Deployment definition for executor, controller, router contains readines/liveness probes. The port definition for those probes should be numbers, instead of string, i.e. port: "8888" should be port 8888. --- charts/fission-core/templates/deployment.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/fission-core/templates/deployment.yaml b/charts/fission-core/templates/deployment.yaml index 1b2a2c1e..c546067b 100644 --- a/charts/fission-core/templates/deployment.yaml +++ b/charts/fission-core/templates/deployment.yaml @@ -144,14 +144,14 @@ spec: readinessProbe: httpGet: path: "/healthz" - port: "8888" + port: 8888 initialDelaySeconds: 1 periodSeconds: 1 failureThreshold: 30 livenessProbe: httpGet: path: "/healthz" - port: "8888" + port: 8888 initialDelaySeconds: 35 periodSeconds: 5 serviceAccount: fission-svc @@ -180,14 +180,14 @@ spec: readinessProbe: httpGet: path: "/router-healthz" - port: "8888" + port: 8888 initialDelaySeconds: 1 periodSeconds: 1 failureThreshold: 30 livenessProbe: httpGet: path: "/router-healthz" - port: "8888" + port: 8888 initialDelaySeconds: 35 periodSeconds: 5 serviceAccount: fission-svc @@ -238,14 +238,14 @@ spec: readinessProbe: httpGet: path: "/healthz" - port: "8888" + port: 8888 initialDelaySeconds: 1 periodSeconds: 1 failureThreshold: 30 livenessProbe: httpGet: path: "/healthz" - port: "8888" + port: 8888 initialDelaySeconds: 35 periodSeconds: 5 serviceAccount: fission-svc