Add healthcheck port configuration option#1750
Open
lucasmeijer wants to merge 1 commit intobasecamp:mainfrom
Open
Add healthcheck port configuration option#1750lucasmeijer wants to merge 1 commit intobasecamp:mainfrom
lucasmeijer wants to merge 1 commit intobasecamp:mainfrom
Conversation
Allow healthchecks to use a different port than the main application port by adding a configurable `port` option under `proxy.healthcheck.port`. When not specified, the healthcheck port is not set and kamal-proxy will use its default behavior. The port can be set to any valid port number (1-65535) and is passed to kamal-proxy via the --health-check-port parameter. This is useful when applications expose health endpoints on a dedicated port separate from the main application port.
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
Kamal does not yet support healthcheck.port (basecamp/kamal#1750). Remove the healthcheck block until that feature is available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/submission-mss
that referenced
this pull request
Mar 18, 2026
Kamal does not yet support healthcheck.port (basecamp/kamal#1750). Remove the healthcheck block until that feature is available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
kamal-proxy supports --health-check-port but Kamal does not yet expose it in configuration (basecamp/kamal#1750). Patch bin/kamal to pass healthcheck.port through to kamal-proxy, enabling health checks on Garage's admin API port (3903) separately from the S3 API port (3900). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/submission-mss
that referenced
this pull request
Mar 18, 2026
kamal-proxy supports --health-check-port but Kamal does not yet expose it in configuration (basecamp/kamal#1750). Patch bin/kamal to pass healthcheck.port through to kamal-proxy, enabling health checks on Garage's admin API port (3903) separately from the S3 API port (3900). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
Use lucasmeijer/kamal@572ad8f3 which adds healthcheck.port configuration (basecamp/kamal#1750). This allows Garage's admin API port (3903) to be used for health checks while the S3 API port (3900) serves traffic. Replaces the previous monkey-patch approach in bin/kamal. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/submission-mss
that referenced
this pull request
Mar 18, 2026
Use lucasmeijer/kamal@572ad8f3 which adds healthcheck.port configuration (basecamp/kamal#1750). This allows Garage's admin API port (3903) to be used for health checks while the S3 API port (3900) serves traffic. Replaces the previous monkey-patch approach in bin/kamal. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
Kamal does not yet support healthcheck.port (basecamp/kamal#1750). Remove the healthcheck block until that feature is available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
kamal-proxy supports --health-check-port but Kamal does not yet expose it in configuration (basecamp/kamal#1750). Patch bin/kamal to pass healthcheck.port through to kamal-proxy, enabling health checks on Garage's admin API port (3903) separately from the S3 API port (3900). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ursm
added a commit
to ddbj/ddbj-repository
that referenced
this pull request
Mar 18, 2026
Use lucasmeijer/kamal@572ad8f3 which adds healthcheck.port configuration (basecamp/kamal#1750). This allows Garage's admin API port (3903) to be used for health checks while the S3 API port (3900) serves traffic. Replaces the previous monkey-patch approach in bin/kamal. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow healthchecks to use a different port than the main application port by adding a configurable
portoption underproxy.healthcheck.port.When not specified, the healthcheck port is not set and kamal-proxy will use its default behavior. The port can be set to any valid port number (1-65535) and is passed to kamal-proxy via the --health-check-port parameter.
This is useful when applications expose health endpoints on a dedicated port separate from the main application port.