Skip to content
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
4 changes: 4 additions & 0 deletions src/app/docs/kagent/examples/telegram-bot/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ spec:
- helm_get_release
- prometheus_query_tool
- datetime_get_current_time
- k8s_delete_resource
- k8s_apply_manifest
- helm_upgrade
- helm_uninstall
requireApproval:
- k8s_delete_resource
- k8s_apply_manifest
Expand Down
7 changes: 4 additions & 3 deletions src/app/docs/kagent/introduction/installation/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -208,19 +208,20 @@ Review the following advanced configuration options that you might want to set u
kubectl -n openshell create secret generic openshell-ssh-handshake \
--from-literal=secret="$(openssl rand -hex 32)"

kubectl apply -f https://raw.githubusercontent.com/NVIDIA/OpenShell/refs/heads/main/deploy/kube/manifests/agent-sandbox.yaml
kubectl apply -f https://github.com/kubernetes-sigs/agent-sandbox/releases/latest/download/manifest.yaml


helm upgrade --install openshell oci://ghcr.io/nvidia/openshell/helm-chart \
--version 0.0.49 \
--namespace openshell \
--create-namespace \
--values - <<'EOF'
server:
disableTls: true
disableTls: true
auth:
allowUnauthenticatedUsers: true
service:
metricsPort: 0
metricsPort: 0
EOF

This example disables TLS and authentication. For production environments, configure TLS and authentication according to your OpenShell requirements.
Expand Down
Loading