Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn user when on cel-expression is used along side on-target branch and on-event #2027

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

PuneetPunamiya
Copy link
Contributor

@PuneetPunamiya PuneetPunamiya commented Mar 26, 2025

This patch warns users in both the user events namespaces and controller logs when using on-event and on-target-branch annotations along side on-cel-expression

Hence warning users would avoid further confusion

Fixes: #1974

Changes

Submitter Checklist

  • 📝 Ensure your commit message is clear and informative. Refer to the How to write a git commit message guide. Include the commit message in the PR body rather than linking to an external site (e.g., Jira ticket).

  • ♽ Run make test lint before submitting a PR to avoid unnecessary CI processing. Consider installing pre-commit and running pre-commit install in the repository root for an efficient workflow.

  • ✨ We use linters to maintain clean and consistent code. Run make lint before submitting a PR. Some linters offer a --fix mode, executable with make fix-linters (ensure markdownlint and golangci-lint are installed).

  • 🧪 While 100% coverage isn't required, we encourage unit tests for code changes where possible.

    (update the documentation accordingly)

@osp-pac osp-pac added the e2e label Mar 26, 2025
func appendAnnotationIfNotEmpty(annotationKey, annotationValue string) []string {
annotations := []string{}
if annotationValue != "" {
annotations = append(annotations, annotationKey)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i am not sure i understand that function? what does it do, why does it need to append ? i can understand the value of the function of that function but you can re-implement it in a more simple way, isnt it ? or perhaps it's not very well named and that makes it confusing?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is what i was thinking:

// checkPipelineRunAnnotation checks if the Pipelinerun has
// `on-event`/`on-target-branch annotations` with `on-cel-expression`
// and if present then warns the user that `on-cel-expression` will take precedence.
func checkPipelineRunAnnotation(prun *tektonv1.PipelineRun, logger *zap.SugaredLogger, eventEmitter *events.EventEmitter, repo *apipac.Repository) {
	// Define the annotations to check in a slice for easy iteration
	checks := []struct {
		key   string
		value string
	}{
		{"on-event", prun.GetObjectMeta().GetAnnotations()[keys.OnEvent]},
		{"on-target-branch", prun.GetObjectMeta().GetAnnotations()[keys.OnTargetBranch]},
	}

	// Preallocate the annotations slice with the exact capacity needed
	annotations := make([]string, 0, len(checks))

	// Iterate through each check and append the key if the value is non-empty
	for _, check := range checks {
		if check.value != "" {
			annotations = append(annotations, check.key)
		}
	}

	if len(annotations) > 0 {
		ignoredAnnotations := strings.Join(annotations, ", ")
		msg := fmt.Sprintf(
			"Warning: The Pipelinerun '%s' has 'on-cel-expression' defined along with [%s] annotation(s). The `on-cel-expression` will take precedence and these annotations will be ignored",
			prun.Name,
			ignoredAnnotations,
		)
		logger.Warnf(msg)
		eventEmitter.EmitMessage(repo, zap.WarnLevel, "RespositoryTakesOnCelExpressionPrecedence", msg)
	}
}

and have that function called in the for _, prun := range pruns loop with:

	checkPipelineRunAnnotation(prun, logger, eventEmitter, repo)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, thanks for the review. It does the same thing as the one which you suggested, but yes the name of the function sounds a bit confusing and also the one which you suggested seems to be a bit more simpler. Will update the PR, thanks

and have that function called in the for _, prun := range pruns loop with:
Yeah, adding it in the for loop but inside this condition

if celExpr, ok := prun.GetObjectMeta().GetAnnotations()[keys.OnCelExpression]; ok 

as this will check if it has cel expression and then will check for annotations

This patch warns users in both the `user events namespaces`
and `controller logs`when using `on-event` and `on-target-branch`
annotations along side `on-cel-expression`

Hence warning users would avoid further confusion

Fixes: openshift-pipelines#1974

Signed-off-by: PuneetPunamiya <ppunamiy@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

Warn user when on-cel-expression is used alongside on-target-branch and on-event
4 participants