Skip to content

Commit b6b2300

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on a9c87c8efe2bfd4402581e29516536607cb95010
Source: chore: migrate from Dockerfile to Containerfile naming (#1215) Author: l-qing Ref: refs/heads/release-4.6 Commit: a9c87c8efe2bfd4402581e29516536607cb95010 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/a9c87c8efe2bfd4402581e29516536607cb95010 🤖 Synced on 2026-01-26 12:04:37 UTC
1 parent 1c901b2 commit b6b2300

22 files changed

Lines changed: 292 additions & 170 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-01-09 02:58:58 UTC
3+
- **Last synced**: 2026-01-26 12:04:37 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [468c424322ca1b0dbeca1200b5bd8fb70fba7afa](https://github.com/alaudadevops/tektoncd-operator/commit/468c424322ca1b0dbeca1200b5bd8fb70fba7afa)
5+
- **Source commit**: [a9c87c8efe2bfd4402581e29516536607cb95010](https://github.com/alaudadevops/tektoncd-operator/commit/a9c87c8efe2bfd4402581e29516536607cb95010)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#136](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20839667754)
7+
- **Workflow run**: [#144](https://github.com/alaudadevops/tektoncd-operator/actions/runs/21356994446)
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 Dockerfile for building an image."
88+
echo "Generate a Containerfile for building an image."
8989
90-
cat << 'EOF' > Dockerfile
90+
cat << 'EOF' > Containerfile
9191
FROM ubuntu:latest
9292
ENV TIME=1
9393
EOF
9494
95-
echo -e "\nDockerfile contents:"
95+
echo -e "\nContainerfile contents:"
9696
echo "-------------------"
97-
cat Dockerfile
97+
cat Containerfile
9898
echo "-------------------"
99-
echo -e "\nDockerfile generated successfully!"
100-
description: A script to generate a Dockerfile for building an image.
101-
name: generate-dockerfile
99+
echo -e "\nContainerfile generated successfully!"
100+
description: A script to generate a Containerfile for building an image.
101+
name: generate-containerfile
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-dockerfile
115+
- name: generate-containerfile
116116
params:
117117
- name: script
118-
value: $(params.generate-dockerfile)
118+
value: $(params.generate-containerfile)
119119
taskRef:
120120
params:
121121
- name: kind
@@ -139,7 +139,7 @@ spec:
139139
- name: TLS_VERIFY
140140
value: "false"
141141
runAfter:
142-
- generate-dockerfile
142+
- generate-containerfile
143143
taskRef:
144144
params:
145145
- name: kind
@@ -155,8 +155,8 @@ spec:
155155
workspaces:
156156
- name: source
157157
workspace: source
158-
- name: dockerconfig
159-
workspace: dockerconfig
158+
- name: registryconfig
159+
workspace: registryconfig
160160
- name: syft-sbom
161161
params:
162162
- name: COMMAND
@@ -191,25 +191,25 @@ spec:
191191
workspaces:
192192
- name: source
193193
workspace: source
194-
- name: dockerconfig
195-
workspace: dockerconfig
194+
- name: registryconfig
195+
workspace: registryconfig
196196
- name: signkey
197197
workspace: signkey
198198
workspaces:
199199
- name: source
200200
description: The workspace for source code.
201-
- name: dockerconfig
201+
- name: registryconfig
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 `Dockerfile` and `git-clone` task output inline within the pipeline.
208+
This tutorial demonstrates a simplified workflow by generating the `Containerfile` 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 Dockerfile that exists in your source code
212+
2. Build the image using the Containerfile 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: dockerconfig
250+
- name: registryconfig
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 Dockerfile for building an image."
121+
echo "Generate a Containerfile for building an image."
122122
123-
cat << 'EOF' > Dockerfile
123+
cat << 'EOF' > Containerfile
124124
FROM ubuntu:latest
125125
ENV TIME=1
126126
EOF
127127
128-
echo -e "\nDockerfile contents:"
128+
echo -e "\nContainerfile contents:"
129129
echo "-------------------"
130-
cat Dockerfile
130+
cat Containerfile
131131
echo "-------------------"
132-
echo -e "\nDockerfile generated successfully!"
133-
description: A script to generate a Dockerfile for building an image.
134-
name: generate-dockerfile
132+
echo -e "\nContainerfile generated successfully!"
133+
description: A script to generate a Containerfile for building an image.
134+
name: generate-containerfile
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-dockerfile
173+
- name: generate-containerfile
174174
params:
175175
- name: script
176-
value: $(params.generate-dockerfile)
176+
value: $(params.generate-containerfile)
177177
runAfter:
178178
- git-clone
179179
taskRef:
@@ -199,7 +199,7 @@ spec:
199199
- name: TLS_VERIFY
200200
value: "false"
201201
runAfter:
202-
- generate-dockerfile
202+
- generate-containerfile
203203
taskRef:
204204
params:
205205
- name: kind
@@ -215,21 +215,21 @@ spec:
215215
workspaces:
216216
- name: source
217217
workspace: source
218-
- name: dockerconfig
219-
workspace: dockerconfig
218+
- name: registryconfig
219+
workspace: registryconfig
220220
workspaces:
221221
- name: source
222222
description: The workspace for source code.
223-
- name: dockerconfig
223+
- name: registryconfig
224224
description: The workspace for distribution registry configuration.
225225
```
226226
227227
:::tip
228-
This tutorial demonstrates a simplified workflow by generating the `Dockerfile` and `git-clone` task output inline within the pipeline.
228+
This tutorial demonstrates a simplified workflow by generating the `Containerfile` 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 Dockerfile that exists in your source code
232+
2. Build the image using the Containerfile 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-dockerfile`
248+
- `generate-containerfile`
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: dockerconfig
275+
- name: registryconfig
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 Dockerfile for building an image."
84+
echo "Generate a Containerfile for building an image."
8585
86-
cat << 'EOF' > Dockerfile
86+
cat << 'EOF' > Containerfile
8787
FROM ubuntu:latest
8888
ENV TIME=1
8989
EOF
9090
91-
echo -e "\nDockerfile contents:"
91+
echo -e "\nContainerfile contents:"
9292
echo "-------------------"
93-
cat Dockerfile
93+
cat Containerfile
9494
echo "-------------------"
95-
echo -e "\nDockerfile generated successfully!"
96-
description: A script to generate a Dockerfile for building an image.
97-
name: generate-dockerfile
95+
echo -e "\nContainerfile generated successfully!"
96+
description: A script to generate a Containerfile for building an image.
97+
name: generate-containerfile
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-dockerfile
111+
- name: generate-containerfile
112112
params:
113113
- name: script
114-
value: $(params.generate-dockerfile)
114+
value: $(params.generate-containerfile)
115115
taskRef:
116116
params:
117117
- name: kind
@@ -135,7 +135,7 @@ spec:
135135
- name: TLS_VERIFY
136136
value: "false"
137137
runAfter:
138-
- generate-dockerfile
138+
- generate-containerfile
139139
taskRef:
140140
params:
141141
- name: kind
@@ -151,8 +151,8 @@ spec:
151151
workspaces:
152152
- name: source
153153
workspace: source
154-
- name: dockerconfig
155-
workspace: dockerconfig
154+
- name: registryconfig
155+
workspace: registryconfig
156156
- name: trivy-scanner
157157
params:
158158
- name: COMMAND
@@ -191,8 +191,8 @@ spec:
191191
workspaces:
192192
- name: source
193193
workspace: source
194-
- name: dockerconfig
195-
workspace: dockerconfig
194+
- name: registryconfig
195+
workspace: registryconfig
196196
- name: cosign-uploads
197197
params:
198198
- name: COMMAND
@@ -225,25 +225,25 @@ spec:
225225
workspaces:
226226
- name: source
227227
workspace: source
228-
- name: dockerconfig
229-
workspace: dockerconfig
228+
- name: registryconfig
229+
workspace: registryconfig
230230
- name: signkey
231231
workspace: signkey
232232
workspaces:
233233
- name: source
234234
description: The workspace for source code.
235-
- name: dockerconfig
235+
- name: registryconfig
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 `Dockerfile` and `git-clone` task output inline within the pipeline.
242+
This tutorial demonstrates a simplified workflow by generating the `Containerfile` 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 Dockerfile that exists in your source code
246+
2. Build the image using the Containerfile 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: dockerconfig
285+
- name: registryconfig
286286
secret:
287287
secretName: <registry-credentials>
288288
- name: signkey

0 commit comments

Comments
 (0)