Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ func TestSetPACControllerDefaultSettings(t *testing.T) {
"secret-github-app-scope-extra-repos": "",
"secret-github-app-token-scoped": "true",
"tekton-dashboard-url": "",
"tracing-label-action": "",
"tracing-label-application": "",
"tracing-label-component": "",
}

assert.DeepEqual(t, opacCR.Spec.PACSettings.Settings, expectedSettings)
Expand Down Expand Up @@ -130,6 +133,9 @@ func TestSetPACControllerLimitedSettings(t *testing.T) {
"secret-github-app-scope-extra-repos": "",
"secret-github-app-token-scoped": "true",
"tekton-dashboard-url": "",
"tracing-label-action": "",
"tracing-label-application": "",
"tracing-label-component": "",
}

assert.DeepEqual(t, opacCR.Spec.PACSettings.Settings, expectedSettings)
Expand Down Expand Up @@ -196,6 +202,9 @@ func TestSetPACControllerDefaultSettingsWithMultipleCatalogs(t *testing.T) {
"secret-github-app-scope-extra-repos": "",
"secret-github-app-token-scoped": "true",
"tekton-dashboard-url": "",
"tracing-label-action": "",
"tracing-label-application": "",
"tracing-label-component": "",
}

assert.DeepEqual(t, opacCR.Spec.PACSettings.Settings, expectedSettings)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ data:
custom-console-url-pr-details: ""
custom-console-url-pr-tasklog: ""

# Tracing label names used for distributed tracing of webhook handling and PipelineRun timing.
tracing-label-action: ""
tracing-label-application: ""
tracing-label-component: ""

kind: ConfigMap
metadata:
name: test-config
Expand Down
Loading