Skip to content

Commit 1e9fc5d

Browse files
authored
chore: reset chart versions to 0.0.0-dev and update installation instructions with LLM configuration parameters (#72)
1 parent c74b4b8 commit 1e9fc5d

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ graph LR
8686
# 1. Install Zelyo Operator
8787
helm install zelyo-operator oci://ghcr.io/zelyo-ai/charts/zelyo-operator \
8888
--namespace zelyo-system \
89-
--create-namespace
89+
--create-namespace \
90+
--set config.llm.provider=openrouter \
91+
--set config.llm.model=anthropic/claude-sonnet-4-20250514 \
92+
--set config.llm.apiKeySecret=zelyo-llm
9093

9194
# 2. Add your LLM API key (operator auto-activates within seconds)
9295
kubectl create secret generic zelyo-llm \

deploy/helm/zelyo-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: zelyo-operator
33
description: Zelyo Operator — Autonomous AI Security Agent for Kubernetes — Detect, Correlate, Fix
44
type: application
5-
version: 1.0.0
6-
appVersion: "1.0.0"
5+
version: 0.0.0-dev
6+
appVersion: "0.0.0-dev"
77
kubeVersion: ">=1.26.0-0"
88
home: https://github.com/zelyo-ai/zelyo-operator
99
icon: https://raw.githubusercontent.com/zelyo-ai/zelyo/main/docs/assets/icon.png

deploy/helm/zelyo-policies/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description: >-
55
Deploys production-ready defaults with tiered profiles (starter, standard, strict),
66
compliance presets (CIS, SOC 2, PCI-DSS, HIPAA), and per-environment namespace targeting.
77
type: application
8-
version: 1.0.0
9-
appVersion: "1.0.0"
8+
version: 0.0.0-dev
9+
appVersion: "0.0.0-dev"
1010
kubeVersion: ">= 1.26.0-0"
1111
home: https://github.com/zelyo-ai/zelyo-operator
1212
icon: https://raw.githubusercontent.com/zelyo-ai/zelyo/main/docs/assets/icon.png

docs/quickstart.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,13 @@ kubectl cluster-info && helm version
2323
```bash
2424
helm install zelyo-operator oci://ghcr.io/zelyo-ai/charts/zelyo-operator \
2525
--namespace zelyo-system \
26-
--create-namespace
26+
--create-namespace \
27+
--set config.llm.provider=openrouter \
28+
--set config.llm.model=anthropic/claude-sonnet-4-20250514 \
29+
--set config.llm.apiKeySecret=zelyo-llm
2730
```
2831

29-
This installs the operator, CRDs, and creates the `ZelyoConfig` CR automatically. The operator starts in Degraded phase until the LLM API key is provided.
32+
This installs the operator, CRDs, and creates the `ZelyoConfig` CR automatically. Override `config.llm.provider` and `config.llm.model` to use a different LLM (see provider table below). The operator starts in Degraded phase until the LLM API key secret is created.
3033

3134
## 2. Add Your LLM API Key
3235

0 commit comments

Comments
 (0)