diff --git a/pkg/pipelines/tekton/pac/pac.go b/pkg/pipelines/tekton/pac/pac.go index 69b38f380..97d7b06a1 100644 --- a/pkg/pipelines/tekton/pac/pac.go +++ b/pkg/pipelines/tekton/pac/pac.go @@ -44,7 +44,7 @@ func DetectPACInstallation(ctx context.Context) (bool, string, error) { installed = true // First search namespaces that usually contains PaC, this check may be done even by unprivileged user. - for _, suspectedNS := range []string{"pipelines-as-code", "openshift-pipelines"} { + for _, suspectedNS := range []string{"pipelines-as-code", "openshift-pipelines", "tekton-pipelines"} { _, e := clientK8s.CoreV1().ConfigMaps(suspectedNS).Get(ctx, infoConfigMap, metav1.GetOptions{}) if e == nil { return installed, suspectedNS, nil