🎯 Orloj has been deployed!

{{- if .Values.server.ingress.enabled }}
Access the web console at:
{{- range .Values.server.ingress.hosts }}
  https://{{ .host }}
{{- end }}
{{- else }}

Access the web console by port-forwarding:

  kubectl port-forward svc/{{ include "orloj.fullname" . }}-server {{ .Values.server.service.port }}:{{ .Values.server.service.port }} -n {{ .Release.Namespace }}

  Then open http://localhost:{{ .Values.server.service.port }}
{{- end }}

Workers: {{ .Values.worker.replicaCount }} replica(s) in region "{{ .Values.worker.region }}"

{{- if eq .Values.auth.mode "native" }}

Auth mode: native
{{- if .Values.auth.setupToken }}
Bootstrap the first admin account at /v1/auth/setup (setup token required).
{{- else }}
Bootstrap the first admin account at /v1/auth/setup
{{- end }}
{{- else if eq .Values.auth.mode "off" }}

⚠️  Auth mode is OFF. Set auth.mode=native and auth.setupToken for production use.
{{- end }}

CLI quickstart:

  orlojctl config set-context default \
    --server http://localhost:{{ .Values.server.service.port }} \
    {{- if .Values.auth.apiToken }}
    --token <your-api-token> \
    {{- end }}
    --namespace default

  orlojctl init my-first-system
  orlojctl apply -f my-first-system/ --run
  orlojctl trace my-first-system-task
