Skip to content

Commit feeaa01

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 089c9a1a882c7818019615827997cc6a5612e097
Source: docs: [DEVOPS-43012] remove `docker` in docs (#1002) Author: yzc Ref: refs/heads/release-4.6 Commit: 089c9a1a882c7818019615827997cc6a5612e097 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/089c9a1a882c7818019615827997cc6a5612e097 🤖 Synced on 2025-12-12 08:38:29 UTC
1 parent 6928d28 commit feeaa01

15 files changed

+29
-29
lines changed

‎.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**: 2025-12-11 09:26:29 UTC
3+
- **Last synced**: 2025-12-12 08:38:29 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [d2f24f2e5030526a45fc673bd7a75c4bd0aaead6](https://github.com/alaudadevops/tektoncd-operator/commit/d2f24f2e5030526a45fc673bd7a75c4bd0aaead6)
5+
- **Source commit**: [089c9a1a882c7818019615827997cc6a5612e097](https://github.com/alaudadevops/tektoncd-operator/commit/089c9a1a882c7818019615827997cc6a5612e097)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#118](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20128242238)
7+
- **Workflow run**: [#120](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20161106324)
88

99
## Files synced:
1010
- docs/

‎docs/en/chains/configure/authentication_for_chains.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ Make sure that any external credentials store, such as the native keychain of th
4646
Create a secret with config.json:
4747

4848
```shell
49-
kubectl create secret generic docker-registry \
49+
kubectl create secret generic registry-credentials \
5050
--from-file=.dockerconfigjson=<path/to/.docker/config.json> \
5151
--type=kubernetes.io/dockerconfigjson \
5252
-n $NAMESPACE
5353
```
5454

5555
#### Create a Secret by providing credentials on the command line
5656

57-
First, you will need access to credentials for your registry (they are in a file called `credentials.json` in this example). Then, create a Docker config type Kubernetes secret:
57+
First, you will need access to credentials for your registry (they are in a file called `credentials.json` in this example). Then, create a `kubernetes.io/dockerconfigjson` type Kubernetes secret:
5858

5959
```shell
6060
kubectl create secret docker-registry registry-credentials \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ spec:
199199
- name: source
200200
description: The workspace for source code.
201201
- name: dockerconfig
202-
description: The workspace for Docker configuration.
202+
description: The workspace for distribution registry configuration.
203203
- name: signkey
204204
description: The workspace for private keys and passwords used for image signatures.
205205
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ spec:
221221
- name: source
222222
description: The workspace for source code.
223223
- name: dockerconfig
224-
description: The workspace for Docker configuration.
224+
description: The workspace for distribution registry configuration.
225225
```
226226
227227
:::tip

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ spec:
233233
- name: source
234234
description: The workspace for source code.
235235
- name: dockerconfig
236-
description: The workspace for Docker configuration.
236+
description: The workspace for distribution registry configuration.
237237
- name: signkey
238238
description: The workspace for private keys and passwords used for image signatures.
239239
```

‎docs/en/chains/quick_start/signed_provenance.mdx‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ spec:
226226
- name: source
227227
description: The workspace for source code.
228228
- name: dockerconfig
229-
description: The workspace for Docker configuration.
229+
description: The workspace for distribution registry configuration.
230230
```
231231
232232
:::tip
@@ -251,7 +251,7 @@ In production environments, you should:
251251
- This format is compliant with Tekton Chains, see [Tekton Chains Type Hinting](../concepts/understanding_tekton_chains.mdx#type-hinting) in above section for more details.
252252
- `workspaces`: The workspaces for the pipeline.
253253
- `source`: The workspace for source code.
254-
- `dockerconfig`: The workspace for Docker configuration.
254+
- `dockerconfig`: The workspace for distribution registry configuration.
255255
:::
256256

257257
**Need to adjust the configuration**
@@ -303,7 +303,7 @@ spec:
303303
- `taskRunTemplate`: The task run template.
304304
- `serviceAccountName`: The service account to use for the pipeline.
305305
- `workspaces`: The workspaces for the pipeline.
306-
- `dockerconfig`: The workspace for Docker configuration.
306+
- `dockerconfig`: The workspace for distribution registry configuration.
307307
- `source`: The workspace for source code.
308308
:::
309309

‎docs/en/design/pipeline-integration/connector-behavior.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ attributes:
288288
- params.versions
289289
290290
workspaces:
291-
- name: docker-config
291+
- name: registry-creds
292292
value:
293293
csi:
294294
driver: connectors-csi

‎docs/en/development/run_e2e.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ toolchains:
9090
testGroup:
9191
# Default test group
9292
default: e2e-automation
93-
# Base64 encoded Docker configuration file
93+
# Base64 encoded distribution registry configuration file
9494
dockerConfig: <BASE64_ENCODED_DOCKER_CONFIG>
9595

9696
nexus:
@@ -238,7 +238,7 @@ Each toolchain contains the following common configuration items:
238238
- `token`: Admin user access token
239239

240240
**Harbor**:
241-
- `dockerConfig`: Base64 encoded Docker configuration file
241+
- `dockerConfig`: Base64 encoded distribution registry configuration file
242242

243243
**SonarQube**:
244244
- `token`: Admin user access token

‎docs/en/development/tektoncd-chains/setup_cosign.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ kubectl delete pod -n tekton-pipelines -l app=tekton-chains-controller
126126

127127
If you're using OCI storage, you need to set up authentication for the registry:
128128

129-
#### Create a Docker Config Secret
129+
#### Create a Distribution Registry Config Secret
130130

131131
Create a secret containing your registry credentials:
132132

‎docs/en/hub/tutorials/writing-pipelines.mdx‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ spec:
123123
workspaces:
124124
- name: source-code
125125
description: Source code workspace
126-
- name: docker-config
127-
description: Docker registry credentials
126+
- name: registry-creds
127+
description: Distribution registry credentials
128128
optional: true
129129
130130
tasks:
@@ -171,7 +171,7 @@ spec:
171171
- name: source
172172
workspace: source-code
173173
- name: dockerconfig
174-
workspace: docker-config
174+
workspace: registry-creds
175175
176176
finally:
177177
- name: cleanup

0 commit comments

Comments
 (0)