Kubernetes Special Agent - Helm Installation erstellt keine Secrets

Erstmal zu dir Thomas:
Das zweite // kommt dadurch, dass du ein trailing / bei in der values.yaml irgendwo angegeben hast. Damit wird Helm in der Erstellung der Notes nicht einfach so umgehen können. Muss es aber auch nicht, da der Collector auch so richtig erstellt wird.

To test access you can run:
{{- if .Values.clusterCollector.ingress.enabled }}
{{- if $.Values.tlsCommunication.enabled }}
  curl -k -H "Authorization: Bearer $TOKEN" https://{{ (first .Values.clusterCollector.ingress.hosts).host }}{{ (first ((first .Values.clusterCollector.ingress.hosts).paths)).path }}/metadata | jq
{{- else }}
  curl -H "Authorization: Bearer $TOKEN" {{ (first .Values.clusterCollector.ingress.hosts).host }}{{ (first ((first .Values.clusterCollector.ingress.hosts).paths)).path }}/metadata | jq
{{- end }}
{{- if $.Values.networkPolicy.enabled }}
...