You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The operator was hardcoding `--host 0.0.0.0` when starting Prefect servers, which prevented them from running in IPv6-only Kubernetes clusters. This adds an optional `host` field to the PrefectServerSpec that lets users configure the bind address.
Changes:
- Added `host` field to PrefectServerSpec (defaults to "0.0.0.0" for backward compatibility)
- Fixed typo: EntrypointArugments → EntrypointArguments (kept deprecated wrapper)
- Users can now set `host: "::"` for IPv6-only or `host: ""` for dual-stack environments
- Added tests and sample configurations for different scenarios
- Fixed Makefile generate target to work with macOS BSD sed
The implementation follows the pattern used elsewhere in the codebase (like Postgres host configuration) and maintains full backward compatibility. The Prefect Helm chart handles this correctly, and now the operator does too.
Closes#224
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
0 commit comments