You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
I've noticed that the test-api-connection.yaml is using {{- include "keptn.common.labels.standard" . | nindent 4 }}
and the template file containing the "keptn.common.labels.standard" template is not present
Fix
Adding the common template
Replacing {{- include "keptn.common.labels.standard" . | nindent 4 }} with {{- include "helm-service.labels" . | nindent 4 }}
The text was updated successfully, but these errors were encountered:
OmarNour14
changed the title
Helm-Service Deployment fails when enabling Remote Control Plane
Helm-Service deployment fails when enabling Remote Control Plane
May 24, 2023
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description:
When deploying the helm service with the latest version. And setting the remoteControlPlane.Enabled value = true
The helm-service deployment fails.
Error Message:
Error: INSTALLATION FAILED: template: helm-service/templates/tests/test-api-connection.yaml:6:14: executing "helm-service/templates/tests/test-api-connection.yaml" at <include "keptn.common.labels.standard" .>: error calling include: template: no template "keptn.common.labels.standard" associated with template "gotpl"
Steps to re-produce the error
$ HELM_SERVICE_VERSION=0.18.1
$ helm install helm-service https://github.com/keptn-contrib/helm-service/releases/download/$HELM_SERVICE_VERSION/helm-service-$HELM_SERVICE_VERSION.tgz -n keptn --create-namespace --set remoteControlPlane.enabled=true --set remoteControlPlane.api.hostname="<HOST_NAME>" --set remoteControlPlane.api.token=<API_KEY>
Cause
I've noticed that the test-api-connection.yaml is using
{{- include "keptn.common.labels.standard" . | nindent 4 }}
and the template file containing the "keptn.common.labels.standard" template is not present
Fix
{{- include "keptn.common.labels.standard" . | nindent 4 }}
with{{- include "helm-service.labels" . | nindent 4 }}
The text was updated successfully, but these errors were encountered: