Skip to content

Commit 2f56d75

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on b289d01418289404cfc12ff27d0cd3f3872b5cef
Source: Fix dynamic form dropdown selection configuration document (#1337) Author: zhoub Ref: refs/heads/release-4.7 Commit: b289d01418289404cfc12ff27d0cd3f3872b5cef This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/b289d01418289404cfc12ff27d0cd3f3872b5cef 🤖 Synced on 2026-03-02 02:42:17 UTC
1 parent c5e2650 commit 2f56d75

31 files changed

Lines changed: 404 additions & 4375 deletions

‎.github/SYNC_INFO.md‎

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

3-
- **Last synced**: 2026-03-02 02:41:26 UTC
3+
- **Last synced**: 2026-03-02 02:42:17 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [6f434ede86fcee633a9e743c9b0ab4f76c6a4ab5](https://github.com/alaudadevops/tektoncd-operator/commit/6f434ede86fcee633a9e743c9b0ab4f76c6a4ab5)
5+
- **Source commit**: [b289d01418289404cfc12ff27d0cd3f3872b5cef](https://github.com/alaudadevops/tektoncd-operator/commit/b289d01418289404cfc12ff27d0cd3f3872b5cef)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#151](https://github.com/alaudadevops/tektoncd-operator/actions/runs/22559180355)
7+
- **Workflow run**: [#152](https://github.com/alaudadevops/tektoncd-operator/actions/runs/22559197522)
88

99
## Files synced:
1010
- docs/

‎docs/en/chains/how_to/sbom_verification.mdx‎

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -85,20 +85,20 @@ metadata:
8585
spec:
8686
params:
8787
- default: |-
88-
echo "Generate a Containerfile for building an image."
88+
echo "Generate a Dockerfile for building an image."
8989
90-
cat << 'EOF' > Containerfile
90+
cat << 'EOF' > Dockerfile
9191
FROM ubuntu:latest
9292
ENV TIME=1
9393
EOF
9494
95-
echo -e "\nContainerfile contents:"
95+
echo -e "\nDockerfile contents:"
9696
echo "-------------------"
97-
cat Containerfile
97+
cat Dockerfile
9898
echo "-------------------"
99-
echo -e "\nContainerfile generated successfully!"
100-
description: A script to generate a Containerfile for building an image.
101-
name: generate-containerfile
99+
echo -e "\nDockerfile generated successfully!"
100+
description: A script to generate a Dockerfile for building an image.
101+
name: generate-dockerfile
102102
type: string
103103
- default: <registry>/test/chains/demo-5:latest
104104
description: The target image address built
@@ -112,10 +112,10 @@ spec:
112112
digest: $(tasks.build-image.results.IMAGE_DIGEST)
113113
uri: $(tasks.build-image.results.IMAGE_URL)
114114
tasks:
115-
- name: generate-containerfile
115+
- name: generate-dockerfile
116116
params:
117117
- name: script
118-
value: $(params.generate-containerfile)
118+
value: $(params.generate-dockerfile)
119119
taskRef:
120120
params:
121121
- name: kind
@@ -139,7 +139,7 @@ spec:
139139
- name: TLS_VERIFY
140140
value: "false"
141141
runAfter:
142-
- generate-containerfile
142+
- generate-dockerfile
143143
taskRef:
144144
params:
145145
- name: kind
@@ -155,8 +155,8 @@ spec:
155155
workspaces:
156156
- name: source
157157
workspace: source
158-
- name: registryconfig
159-
workspace: registryconfig
158+
- name: dockerconfig
159+
workspace: dockerconfig
160160
- name: syft-sbom
161161
params:
162162
- name: COMMAND
@@ -191,25 +191,25 @@ spec:
191191
workspaces:
192192
- name: source
193193
workspace: source
194-
- name: registryconfig
195-
workspace: registryconfig
194+
- name: dockerconfig
195+
workspace: dockerconfig
196196
- name: signkey
197197
workspace: signkey
198198
workspaces:
199199
- name: source
200200
description: The workspace for source code.
201-
- name: registryconfig
201+
- name: dockerconfig
202202
description: The workspace for distribution registry configuration.
203203
- name: signkey
204204
description: The workspace for private keys and passwords used for image signatures.
205205
```
206206
207207
:::tip
208-
This tutorial demonstrates a simplified workflow by generating the `Containerfile` and `git-clone` task output inline within the pipeline.
208+
This tutorial demonstrates a simplified workflow by generating the `Dockerfile` and `git-clone` task output inline within the pipeline.
209209
In production environments, you would typically:
210210

211211
1. Use the `git-clone` task to fetch source code from your repository
212-
2. Build the image using the Containerfile that exists in your source code
212+
2. Build the image using the Dockerfile that exists in your source code
213213
3. This approach ensures proper version control and maintains the separation between code and pipeline configuration
214214
:::
215215

@@ -247,7 +247,7 @@ spec:
247247
taskRunTemplate:
248248
serviceAccountName: <default>
249249
workspaces:
250-
- name: registryconfig
250+
- name: dockerconfig
251251
secret:
252252
secretName: <registry-credentials>
253253
- name: source

‎docs/en/chains/how_to/source_code_repository_verification.mdx‎

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -118,20 +118,20 @@ spec:
118118
name: generate-git-clone-results
119119
type: string
120120
- default: |-
121-
echo "Generate a Containerfile for building an image."
121+
echo "Generate a Dockerfile for building an image."
122122
123-
cat << 'EOF' > Containerfile
123+
cat << 'EOF' > Dockerfile
124124
FROM ubuntu:latest
125125
ENV TIME=1
126126
EOF
127127
128-
echo -e "\nContainerfile contents:"
128+
echo -e "\nDockerfile contents:"
129129
echo "-------------------"
130-
cat Containerfile
130+
cat Dockerfile
131131
echo "-------------------"
132-
echo -e "\nContainerfile generated successfully!"
133-
description: A script to generate a Containerfile for building an image.
134-
name: generate-containerfile
132+
echo -e "\nDockerfile generated successfully!"
133+
description: A script to generate a Dockerfile for building an image.
134+
name: generate-dockerfile
135135
type: string
136136
- default: <registry>/test/chains/demo-3:latest
137137
description: The target image address built
@@ -170,10 +170,10 @@ spec:
170170
workspaces:
171171
- name: source
172172
workspace: source
173-
- name: generate-containerfile
173+
- name: generate-dockerfile
174174
params:
175175
- name: script
176-
value: $(params.generate-containerfile)
176+
value: $(params.generate-dockerfile)
177177
runAfter:
178178
- git-clone
179179
taskRef:
@@ -199,7 +199,7 @@ spec:
199199
- name: TLS_VERIFY
200200
value: "false"
201201
runAfter:
202-
- generate-containerfile
202+
- generate-dockerfile
203203
taskRef:
204204
params:
205205
- name: kind
@@ -215,21 +215,21 @@ spec:
215215
workspaces:
216216
- name: source
217217
workspace: source
218-
- name: registryconfig
219-
workspace: registryconfig
218+
- name: dockerconfig
219+
workspace: dockerconfig
220220
workspaces:
221221
- name: source
222222
description: The workspace for source code.
223-
- name: registryconfig
223+
- name: dockerconfig
224224
description: The workspace for distribution registry configuration.
225225
```
226226
227227
:::tip
228-
This tutorial demonstrates a simplified workflow by generating the `Containerfile` and `git-clone` task output inline within the pipeline.
228+
This tutorial demonstrates a simplified workflow by generating the `Dockerfile` and `git-clone` task output inline within the pipeline.
229229
In production environments, you would typically:
230230

231231
1. Use the `git-clone` task to fetch source code from your repository
232-
2. Build the image using the Containerfile that exists in your source code
232+
2. Build the image using the Dockerfile that exists in your source code
233233
3. This approach ensures proper version control and maintains the separation between code and pipeline configuration
234234
:::
235235

@@ -245,7 +245,7 @@ In production environments, you would typically:
245245

246246
**Need to adjust the configuration**
247247
- `params`:
248-
- `generate-containerfile`
248+
- `generate-dockerfile`
249249
- `default`: Adjust the from image address.
250250
- `image`:
251251
- `default`: The target image address built.
@@ -272,7 +272,7 @@ spec:
272272
taskRunTemplate:
273273
serviceAccountName: <default>
274274
workspaces:
275-
- name: registryconfig
275+
- name: dockerconfig
276276
secret:
277277
secretName: <registry-credentials>
278278
- name: source

‎docs/en/chains/how_to/vulnerability_scanning_verification.mdx‎

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,20 @@ metadata:
8181
spec:
8282
params:
8383
- default: |-
84-
echo "Generate a Containerfile for building an image."
84+
echo "Generate a Dockerfile for building an image."
8585
86-
cat << 'EOF' > Containerfile
86+
cat << 'EOF' > Dockerfile
8787
FROM ubuntu:latest
8888
ENV TIME=1
8989
EOF
9090
91-
echo -e "\nContainerfile contents:"
91+
echo -e "\nDockerfile contents:"
9292
echo "-------------------"
93-
cat Containerfile
93+
cat Dockerfile
9494
echo "-------------------"
95-
echo -e "\nContainerfile generated successfully!"
96-
description: A script to generate a Containerfile for building an image.
97-
name: generate-containerfile
95+
echo -e "\nDockerfile generated successfully!"
96+
description: A script to generate a Dockerfile for building an image.
97+
name: generate-dockerfile
9898
type: string
9999
- default: <registry>/test/chains/demo-4:latest
100100
description: The target image address built
@@ -108,10 +108,10 @@ spec:
108108
digest: $(tasks.build-image.results.IMAGE_DIGEST)
109109
uri: $(tasks.build-image.results.IMAGE_URL)
110110
tasks:
111-
- name: generate-containerfile
111+
- name: generate-dockerfile
112112
params:
113113
- name: script
114-
value: $(params.generate-containerfile)
114+
value: $(params.generate-dockerfile)
115115
taskRef:
116116
params:
117117
- name: kind
@@ -135,7 +135,7 @@ spec:
135135
- name: TLS_VERIFY
136136
value: "false"
137137
runAfter:
138-
- generate-containerfile
138+
- generate-dockerfile
139139
taskRef:
140140
params:
141141
- name: kind
@@ -151,8 +151,8 @@ spec:
151151
workspaces:
152152
- name: source
153153
workspace: source
154-
- name: registryconfig
155-
workspace: registryconfig
154+
- name: dockerconfig
155+
workspace: dockerconfig
156156
- name: trivy-scanner
157157
params:
158158
- name: COMMAND
@@ -191,8 +191,8 @@ spec:
191191
workspaces:
192192
- name: source
193193
workspace: source
194-
- name: registryconfig
195-
workspace: registryconfig
194+
- name: dockerconfig
195+
workspace: dockerconfig
196196
- name: cosign-uploads
197197
params:
198198
- name: COMMAND
@@ -225,25 +225,25 @@ spec:
225225
workspaces:
226226
- name: source
227227
workspace: source
228-
- name: registryconfig
229-
workspace: registryconfig
228+
- name: dockerconfig
229+
workspace: dockerconfig
230230
- name: signkey
231231
workspace: signkey
232232
workspaces:
233233
- name: source
234234
description: The workspace for source code.
235-
- name: registryconfig
235+
- name: dockerconfig
236236
description: The workspace for distribution registry configuration.
237237
- name: signkey
238238
description: The workspace for private keys and passwords used for image signatures.
239239
```
240240
241241
:::tip
242-
This tutorial demonstrates a simplified workflow by generating the `Containerfile` and `git-clone` task output inline within the pipeline.
242+
This tutorial demonstrates a simplified workflow by generating the `Dockerfile` and `git-clone` task output inline within the pipeline.
243243
In production environments, you would typically:
244244

245245
1. Use the `git-clone` task to fetch source code from your repository
246-
2. Build the image using the Containerfile that exists in your source code
246+
2. Build the image using the Dockerfile that exists in your source code
247247
3. This approach ensures proper version control and maintains the separation between code and pipeline configuration
248248
:::
249249

@@ -282,7 +282,7 @@ spec:
282282
taskRunTemplate:
283283
serviceAccountName: <default>
284284
workspaces:
285-
- name: registryconfig
285+
- name: dockerconfig
286286
secret:
287287
secretName: <registry-credentials>
288288
- name: signkey

0 commit comments

Comments
 (0)