Skip to content

Commit

Permalink
chore: move readiness and liveness to api port
Browse files Browse the repository at this point in the history
  • Loading branch information
vandot committed Apr 17, 2024
1 parent 55ada4e commit 6b924dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/orchestration/k8s/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func setContainers(o setContainersOptions) (c containers.Containers) {
InitialDelaySeconds: 5,
Handler: containers.HTTPGetHandler{
Path: "/health",
Port: "debug",
Port: "api",
},
}},
ReadinessProbe: containers.Probe{HTTPGet: &containers.HTTPGetProbe{
Expand All @@ -163,7 +163,7 @@ func setContainers(o setContainersOptions) (c containers.Containers) {
// because Beekeeper does funding it needs node to be ready before it is funded
// if Bee readiness is changed to be ready before funding, path can be set to "/readiness"
Path: "/health",
Port: "debug",
Port: "api",
},
}},
Resources: containers.Resources{
Expand Down

0 comments on commit 6b924dc

Please sign in to comment.