Skip to content

Commit

Permalink
fix(STONEINTG-524): update NS of pipelines-as-code secret
Browse files Browse the repository at this point in the history
* update NS of pipelines-as-code secret since the NS has been
  changed to openshift-pipelines

Signed-off-by: Hongwei Liu <[email protected]>
  • Loading branch information
hongweiliu17 committed Sep 11, 2023
1 parent d1595e8 commit cafa2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion status/reporters.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func (r *GitHubReporter) getAppCredentials(ctx context.Context, pipelineRun *tek

// Get the global pipelines as code secret
pacSecret := v1.Secret{}
err = r.k8sClient.Get(ctx, types.NamespacedName{Namespace: "pipelines-as-code", Name: "pipelines-as-code-secret"}, &pacSecret)
err = r.k8sClient.Get(ctx, types.NamespacedName{Namespace: "openshift-pipelines", Name: "pipelines-as-code-secret"}, &pacSecret)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit cafa2a2

Please sign in to comment.