You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.2 KiB
Plaintext

Thank you for installing {{ .Chart.Name }}!
Your Openclaw gateway is starting up. This may take 1-2 minutes.
{{- if .Values.ingress.enabled }}
{{- $domain := .Values.ingress.domain }}
{{- $tlsEnabled := .Values.ingress.tls.enabled }}
{{- if $domain }}
==========================================================
Openclaw is accessible at:
{{- if $tlsEnabled }}
https://{{ $domain }}
{{- else }}
http://{{ $domain }}
{{- end }}
==========================================================
{{- end }}
{{- end }}
1. Check the gateway status:
kubectl get statefulset {{ include "openclaw.fullname" . }} -n {{ .Release.Namespace }}
kubectl logs -f {{ include "openclaw.fullname" . }}-0 -n {{ .Release.Namespace }}
2. Access the Control UI:
{{- if .Values.ingress.enabled }}
{{- $domain := .Values.ingress.domain }}
{{- $tlsEnabled := .Values.ingress.tls.enabled }}
{{- if $domain }}
{{- if $tlsEnabled }}
https://{{ $domain }}
{{- else }}
http://{{ $domain }}
{{- end }}
{{- else }}
{{- range .Values.ingress.hosts }}
https://{{ .host }}
{{- end }}
{{- end }}
{{- else }}
# Port-forward to access locally:
kubectl port-forward {{ include "openclaw.fullname" . }}-0 {{ .Values.gateway.port }}:{{ .Values.gateway.port }} -n {{ .Release.Namespace }}
Then visit: http://localhost:{{ .Values.gateway.port }}
{{- end }}
3. Your gateway token (for authentication):
kubectl get secret {{ include "openclaw.secretName" . }} -n {{ .Release.Namespace }} -o jsonpath='{.data.gatewayToken}' | base64 -d && echo
4. Configure channels:
kubectl exec -it {{ include "openclaw.fullname" . }}-0 -n {{ .Release.Namespace }} -- node dist/index.js channels add --channel discord --token YOUR_BOT_TOKEN
5. Check health:
kubectl exec -it {{ include "openclaw.fullname" . }}-0 -n {{ .Release.Namespace }} -- node dist/index.js health
Documentation: https://docs.clawd.bot
Support: https://github.com/openclaw/openclaw/issues
{{- if not .Values.persistence.enabled }}
WARNING: Persistence is disabled. State will be lost on pod restart.
{{- end }}
{{- if eq .Values.gateway.bind "loopback" }}
WARNING: Gateway is bound to loopback. External access will not work.
{{- end }}