Canon has been deployed!

1. Get the application URL:
{{- if .Values.ingress.enabled }}
  https://{{ .Values.ingress.hostname }}
{{- else }}
  kubectl port-forward svc/{{ include "canon.fullname" . }} 8080:{{ .Values.service.port }}
  Then visit: http://localhost:8080/healthz
{{- end }}

2. Configure your GitHub App webhook URL:
{{- if .Values.ingress.enabled }}
   https://{{ .Values.ingress.hostname }}/webhook
{{- else }}
   Use an ingress or LoadBalancer to expose the /webhook endpoint
{{- end }}

3. Verify the deployment:
   kubectl get pods -l "app.kubernetes.io/name={{ include "canon.name" . }}"

4. Check logs:
   kubectl logs -l "app.kubernetes.io/name={{ include "canon.name" . }}" -f
