Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make small changes to operator docs #78

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/getting-started/in-cluster-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Whatever backend you are using, you need to make sure to have a secret that work
For instance, this means you will need to install your OpenAI token as a secret into the cluster:

```bash
kubectl create secret generic k8sgpt-sample-secret --from-literal=openai-api-key=$OPENAI_TOKEN -n default
kubectl create secret generic k8sgpt-sample-secret --from-literal=openai-api-key=$OPENAI_TOKEN -n k8sgpt-operator-system
```

## Deploying a K8sGPT resource
Expand All @@ -50,7 +50,7 @@ spec:
# anonymized: false
# language: english
noCache: false
version: v0.3.8
version: v0.3.17
# filters:
# - Ingress
# sink:
Expand All @@ -62,7 +62,7 @@ spec:
EOF
```

Please replace the `<VERSION>` field with the [current release of K8sGPT](https://github.com/k8sgpt-ai/k8sgpt/releases). At the time of writing this is `v0.3.6`.
Please replace the `<VERSION>` field with the [current release of K8sGPT](https://github.com/k8sgpt-ai/k8sgpt/releases). At the time of writing this is `v0.3.17`.

### Regarding out-of-cluster traffic to AI backends

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/operator/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ serviceMonitor:

The new `values.yaml` manifest can then be provided upon installing the Operator inside the cluster:
```bash
helm install release k8sgpt/k8sgpt-operator --values values.yaml
helm update --install release k8sgpt/k8sgpt-operator --values values.yaml
```
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ nav:
- Overview: reference/cli/index.md
- Integration and Filter: reference/cli/filters.md
- Serve mode: reference/cli/serve-mode.md
- Providers:
- Overview: reference/providers/backend.md
- Operator:
- Overview: reference/operator/overview.md
- Advanced Installation Options: reference/operator/advanced-installation.md
- Guidelines & Community:
- Guidelines: reference/guidelines/guidelines.md
- Community: reference/guidelines/community.md
- Privacy: reference/guidelines/privacy.md
- Providers:
- Overview: reference/providers/backend.md
- Explanation:
- Integration: explanation/integrations.md
- Caching: explanation/caching.md
Expand Down