Skip to content

Commit e3a0c2a

Browse files
committed
📚 Sync documentation from source-docs
Source: docs: Update runtime configuration tep to clarify merge behavior Author: qingliu Commit: e8300463cad815e08e4c3025ca8d752cebac656d This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/e8300463cad815e08e4c3025ca8d752cebac656d 🤖 Synced on 2025-07-03 07:54:44 UTC
1 parent 4134a10 commit e3a0c2a

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

‎.github/SYNC_INFO.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Documentation Sync Information
22

3-
- **Last synced**: 2025-07-02 06:41:21 UTC
3+
- **Last synced**: 2025-07-03 07:54:44 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [35c2fc38ce5a3fd145e64a1e22acf30ae7ce9d1b](https://github.com/alaudadevops/tektoncd-operator/commit/35c2fc38ce5a3fd145e64a1e22acf30ae7ce9d1b)
6-
- **Triggered by**: lentil1016
7-
- **Workflow run**: [#4](https://github.com/alaudadevops/tektoncd-operator/actions/runs/16017978615)
5+
- **Source commit**: [e8300463cad815e08e4c3025ca8d752cebac656d](https://github.com/alaudadevops/tektoncd-operator/commit/e8300463cad815e08e4c3025ca8d752cebac656d)
6+
- **Triggered by**: l-qing
7+
- **Workflow run**: [#7](https://github.com/alaudadevops/tektoncd-operator/actions/runs/16044776144)
88

99
## Files synced:
1010
- docs/

‎docs/en/teps/0001_triggertemplate_runtime_config.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,11 +478,11 @@ spec:
478478

479479
- **env merged by `name` field**: Environment variables are merged by name, same names are overridden
480480
- **volumes merged by `name` field**: Volumes are merged by name, same names are overridden
481-
- **Other fields use standard merge**: `nodeSelector`, `securityContext` and other fields use standard merge logic (later values override earlier ones)
481+
- **Other fields use standard merge**: `nodeSelector`, `securityContext` and other fields use standard merge logic. If the field is an object, it will be recursively merged.
482482
- **Example**:
483483
- `BUILD_ENV` is overridden from `"development"` to `"production"`
484484
- `shared-config` volume is overridden from `configMap` to `secret`
485-
- `securityContext` is completely merged
485+
- `securityContext` fields are recursively merged (same fields overridden, different fields preserved)
486486

487487
This merge mechanism ensures configuration flexibility and composability, allowing users to create complex runtime configurations by combining multiple templates.
488488

‎docs/en/triggers/trouble_shooting/pipeline_not_triggered.mdx‎

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
22
weight: 10
3-
sourceSHA: 4894d6ee9f6876a61b243b991087cc3b3083a7c424fdf0374d5300a347099774
43
---
54

65

76
# The Pipeline is not automatically triggered
87

98
## Problem Description
109

11-
After creating the `Pipeline` and `Trigger` using `Pipelines` functionality through the UI console, the `Pipeline` is not automatically triggered event though the event is sent (i.e the code is pushed).
10+
After creating the `Pipeline` and `Trigger` using `Pipelines` functionality through the UI console, the `Pipeline` is not automatically triggered even though the event is sent (i.e the code is pushed).
1211

1312
## Root Cause Analysis
1413

@@ -19,18 +18,18 @@ There are several possible causes for this issue:
1918
3. The `ServiceAccount` used by the `EventListener` deployment does not have enough permissions.
2019
4. The `Trigger` is not configured correctly.
2120

22-
## Problem Investigation
21+
## Problem Investigation
2322

24-
Given the possible issues mentioned above, follow the steps to find the root cause of the problem:
23+
Given the possible issues mentioned above, follow the steps to find the root cause of the problem:
2524

26-
### Webhook configuration was not setup correctly
25+
### Webhook configuration was not set up correctly
2726

2827
1. Access your repository/settings using an account with appropriate permissions.
2928
2. Check all webhook settings and confirm with the platform administrator details regarding the target address of the webhook.
30-
3. Make sure the required events are enabled by the webhook. For Gitlab events please refer to [GitLab Event Triggers](../how_to/gitlab_events.mdx)
31-
29+
3. Make sure the required events are enabled by the webhook. For Gitlab events, please refer to [GitLab Event Triggers](../how_to/gitlab_events.mdx)
3230

33-
### EventLister not deployed or setup incorrectly
31+
32+
### EventListener not deployed or set up incorrectly
3433

3534
1. Verify with the Platform Administrator that the `EventListener` was deployed and can be reached from the event source (i.e Gitlab instance).
3635
2. Access the `EventListener` resource and check if it is listening `Triggers` in the target namespace checking the `EventListener` resource `spec`, it should have the `namespaceSelector` field set to `*` or listing the target namespace.

0 commit comments

Comments
 (0)