Skip to content

Commit 5f1fc16

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 4596472ae44bf23c098627213515a24a978927d0
Source: docs: [DEVOPS-42788] support multi-version images for catalog Tasks (#863) Author: yzc Ref: refs/heads/main Commit: 4596472ae44bf23c098627213515a24a978927d0 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/4596472ae44bf23c098627213515a24a978927d0 🤖 Synced on 2025-11-28 07:22:00 UTC
1 parent c1b62b5 commit 5f1fc16

File tree

4 files changed

+332
-38
lines changed

4 files changed

+332
-38
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-11-26 07:43:03 UTC
3+
- **Last synced**: 2025-11-28 07:22:00 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [810c6abe5024de122277cf4d47f1e8a3a2135a38](https://github.com/alaudadevops/tektoncd-operator/commit/810c6abe5024de122277cf4d47f1e8a3a2135a38)
6-
- **Triggered by**: danielfbm
7-
- **Workflow run**: [#101](https://github.com/alaudadevops/tektoncd-operator/actions/runs/19696219460)
5+
- **Source commit**: [4596472ae44bf23c098627213515a24a978927d0](https://github.com/alaudadevops/tektoncd-operator/commit/4596472ae44bf23c098627213515a24a978927d0)
6+
- **Triggered by**: edge-katanomi-app2[bot]
7+
- **Workflow run**: [#103](https://github.com/alaudadevops/tektoncd-operator/actions/runs/19756948764)
88

99
## Files synced:
1010
- docs/

‎docs/en/development/system-roles.mdx‎

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -119,45 +119,45 @@ Developers should modify system roles when:
119119

120120
2. **Edit the Role Definition**: Update the ClusterRole rules with the new permissions:
121121

122-
```yaml
123-
apiVersion: rbac.authorization.k8s.io/v1
124-
kind: ClusterRole
125-
metadata:
126-
labels:
127-
rbac.cpaas.io/aggregate-to-cluster-admin: "true"
128-
# ... other aggregation labels
129-
name: cpaas:tekton-new-resource:business-ns:admin
130-
rules:
131-
- apiGroups:
132-
- your.api.group
133-
resources:
134-
- yourresource
135-
- yourresource/status
136-
verbs:
137-
- '*' # or specific verbs: get, list, watch, create, update, delete
138-
```
122+
```yaml
123+
apiVersion: rbac.authorization.k8s.io/v1
124+
kind: ClusterRole
125+
metadata:
126+
labels:
127+
rbac.cpaas.io/aggregate-to-cluster-admin: "true"
128+
# ... other aggregation labels
129+
name: cpaas:tekton-new-resource:business-ns:admin
130+
rules:
131+
- apiGroups:
132+
- your.api.group
133+
resources:
134+
- yourresource
135+
- yourresource/status
136+
verbs:
137+
- '*' # or specific verbs: get, list, watch, create, update, delete
138+
```
139139
140140
3. **Update kustomization.yaml**: If adding a new role file, add it to `config/system-roles/kustomization.yaml`:
141141

142-
```yaml
143-
resources:
144-
- tekton-cluster-admin.yaml
145-
- tekton-deployment-admin.yaml
146-
- tekton-pipelines.yaml
147-
- tekton-triggers-admin.yaml
148-
- tekton-triggers.yaml
149-
- your-new-role.yaml # Add new file here
150-
```
142+
```yaml
143+
resources:
144+
- tekton-cluster-admin.yaml
145+
- tekton-deployment-admin.yaml
146+
- tekton-pipelines.yaml
147+
- tekton-triggers-admin.yaml
148+
- tekton-triggers.yaml
149+
- your-new-role.yaml # Add new file here
150+
```
151151

152152
4. **Test Locally**: Build and test the changes locally:
153153

154-
```bash
155-
# Generate the bundle
156-
make bundle
154+
```bash
155+
# Generate the bundle
156+
make bundle
157157
158-
# Verify the roles are included
159-
cat upstream/operatorhub/kubernetes/release-artifacts/bundle/manifests/*.yaml | grep -A 20 "kind: ClusterRole"
160-
```
158+
# Verify the roles are included
159+
cat upstream/operatorhub/kubernetes/release-artifacts/bundle/manifests/*.yaml | grep -A 20 "kind: ClusterRole"
160+
```
161161

162162
5. **Commit and Create PR**: Submit your changes following the standard Git workflow.
163163

‎docs/en/pipelines/how_to/manual_approval_gate.mdx‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,14 @@ spec:
4545
taskRef:
4646
apiVersion: openshift-pipelines.org/v1alpha1
4747
kind: ApprovalTask
48+
timeout: "24h"
4849
params:
4950
- name: approvers
5051
value:
5152
- alice
5253
- group:release-managers
5354
- name: numberOfApprovalsRequired
5455
value: "1"
55-
- name: timeout
56-
value: "24h"
5756
- name: description
5857
value: "Approve promotion into production"
5958
- name: deploy

0 commit comments

Comments
 (0)