ProClaw has been deployed successfully!

License tier: {{ .Values.licenseTier }}

Enabled services:
{{- if .Values.redis.enabled }}
  - Redis:              {{ include "proclaw.fullname" . }}-redis:{{ .Values.redis.port }}
{{- end }}
{{- if .Values.postgres.enabled }}
  - PostgreSQL:         {{ include "proclaw.fullname" . }}-postgres:{{ .Values.postgres.port }}
{{- end }}
{{- if .Values.opa.enabled }}
  - OPA:                {{ include "proclaw.fullname" . }}-opa:{{ .Values.opa.port }}
{{- end }}
{{- if .Values.interceptorBridge.enabled }}
  - Interceptor Bridge: {{ include "proclaw.fullname" . }}-interceptor-bridge:{{ .Values.interceptorBridge.ports.grpc }} (gRPC), :{{ .Values.interceptorBridge.ports.health }} (HTTP)
{{- end }}
{{- if .Values.policyEngine.enabled }}
  - Policy Engine:      {{ include "proclaw.fullname" . }}-policy-engine:{{ .Values.policyEngine.ports.api }}
{{- end }}
{{- if .Values.identityService.enabled }}
  - Identity Service:   {{ include "proclaw.fullname" . }}-identity-service:{{ .Values.identityService.ports.api }}
{{- end }}
{{- if .Values.sandboxManager.enabled }}
  - Sandbox Manager:    {{ include "proclaw.fullname" . }}-sandbox-manager:{{ .Values.sandboxManager.ports.api }}
{{- end }}
{{- if .Values.networkEnforcer.enabled }}
  - Network Enforcer:   {{ include "proclaw.fullname" . }}-network-enforcer:{{ .Values.networkEnforcer.ports.api }}
{{- end }}
{{- if .Values.dlpEngine.enabled }}
  - DLP Engine:         {{ include "proclaw.fullname" . }}-dlp-engine:{{ .Values.dlpEngine.ports.api }}
{{- end }}
{{- if .Values.auditLedger.enabled }}
  - Audit Ledger:       {{ include "proclaw.fullname" . }}-audit-ledger:{{ .Values.auditLedger.ports.api }}
{{- end }}
{{- if .Values.dashboard.enabled }}
  - Dashboard:          {{ include "proclaw.fullname" . }}-dashboard:{{ .Values.dashboard.port }}
{{- end }}
{{- if .Values.enterpriseApi.enabled }}
  - Enterprise API:     {{ include "proclaw.fullname" . }}-enterprise-api:{{ .Values.enterpriseApi.ports.api }}
{{- end }}

{{- if .Values.dashboard.enabled }}

Access the dashboard:
  kubectl port-forward svc/{{ include "proclaw.fullname" . }}-dashboard {{ .Values.dashboard.port }}:{{ .Values.dashboard.port }}
  Then open http://localhost:{{ .Values.dashboard.port }}
{{- end }}

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

Ingress is enabled. Access ProClaw at:
{{- range .Values.ingress.hosts }}
  http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}
{{- end }}
{{- end }}
