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.
This commit is contained in:
yiqunding
2018-03-22 11:14:47 -07:00
committed by Soam Vasani
parent 70a93a7302
commit 8fb4aca231
@@ -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