-
Notifications
You must be signed in to change notification settings - Fork 99
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
base: main
Are you sure you want to change the base?
Warn user when on cel-expression is used along side on-target branch and on-event #2027
Conversation
a744645
to
5734a25
Compare
5734a25
to
78ccf0f
Compare
78ccf0f
to
b4305a4
Compare
pkg/matcher/annotation_matcher.go
Outdated
func appendAnnotationIfNotEmpty(annotationKey, annotationValue string) []string { | ||
annotations := []string{} | ||
if annotationValue != "" { | ||
annotations = append(annotations, annotationKey) |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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)
There was a problem hiding this comment.
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
b4305a4
to
1cb3a70
Compare
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>
1cb3a70
to
1df4034
Compare
This patch warns users in both the
user events namespaces
andcontroller logs
when usingon-event
andon-target-branch
annotations along sideon-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)