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
Add Gateway API HTTPRoute and simplify installation (#71)
* refactor: convert ZelyoConfig from Helm hook to regular template
ZelyoConfig was deployed as a post-install/post-upgrade Helm hook,
which meant it was not tracked in the release manifest — helm upgrade
could not update it, helm rollback could not restore it, and helm get
manifest did not show it. Converting to a regular template fixes all
three issues.
Also streamlines onboarding: removes cert-manager as a required
prerequisite (self-signed is the default), reduces quickstart from
5 steps to 3, and adds ZelyoConfig status messaging to NOTES.txt.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add Gateway API HTTPRoute for dashboard exposure
Adds an HTTPRoute template alongside the existing Ingress, so users
on Gateway API can expose the dashboard without annotations hacks.
Configured via httpRoute.parentRefs and httpRoute.hostnames in values.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/quickstart.md
+64-54Lines changed: 64 additions & 54 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Quickstart
2
2
3
-
Get Zelyo Operator running on your Kubernetes cluster and scanning workloads in under 10 minutes.
3
+
Get Zelyo Operator running on your Kubernetes cluster and scanning workloads in under 5 minutes.
4
4
5
5
Zelyo Operator is an open-source CNAPP that detects security misconfigurations across Kubernetes and cloud infrastructure, correlates them with an LLM, and opens GitOps PRs to fix them.
6
6
@@ -14,36 +14,21 @@ Zelyo Operator is an open-source CNAPP that detects security misconfigurations a
> **Note:** Webhook TLS certificates are self-signed by default. If you prefer cert-manager managed certificates, see [Optional: cert-manager for Webhook TLS](#optional-cert-manager-for-webhook-tls) below.
This installs the operator, CRDs, and creates the `ZelyoConfig` CR automatically. The operator starts in Degraded phase until the LLM API key is provided.
30
+
31
+
## 2. Add Your LLM API Key
47
32
48
33
Get a key from [openrouter.ai/keys](https://openrouter.ai/keys) (or any supported provider -- see table below), then:
0 commit comments