CleverAgents Server has been deployed!

{{- if .Values.ingress.enabled }}

The server is accessible via Ingress:
{{- range $host := .Values.ingress.hosts }}
  {{- range .paths }}
  http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
  {{- end }}
{{- end }}

{{- if .Values.ingress.tls }}
TLS termination is configured at the Ingress controller.
{{- else }}
⚠️  Insecure ingress mode is enabled (`ingress.allowInsecure=true`).
This mode is for local/dev use only and is not suitable for production.
{{- end }}

{{- else }}

To access the server, use port-forward:

  kubectl port-forward svc/{{ include "cleveragents.fullname" . }} {{ .Values.service.port }}:{{ .Values.service.port }}

Then access: http://localhost:{{ .Values.service.port }}

{{- end }}

{{- if .Values.redis.enabled }}

Redis is enabled for session affinity and rate limiting.
{{- end }}

For more information, see the deployment README in k8s/README.md.
