Skip to content

Commit 376866d

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 7d9ec4c8d0bf8777aedfb3d6a046a7dc788ea1b6
Source: docs: [DEVOPS-43043] remove docker in docs for release-4.4 (#1033) Author: yzc Ref: refs/heads/release-4.4 Commit: 7d9ec4c8d0bf8777aedfb3d6a046a7dc788ea1b6 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/7d9ec4c8d0bf8777aedfb3d6a046a7dc788ea1b6 🤖 Synced on 2025-12-23 10:18:46 UTC
1 parent 6b4feff commit 376866d

21 files changed

+53
-53
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-10-16 03:35:39 UTC
3+
- **Last synced**: 2025-12-23 10:18:46 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [05ad4d35338f17a79c11d7e998fb35850936be7d](https://github.com/alaudadevops/tektoncd-operator/commit/05ad4d35338f17a79c11d7e998fb35850936be7d)
5+
- **Source commit**: [7d9ec4c8d0bf8777aedfb3d6a046a7dc788ea1b6](https://github.com/alaudadevops/tektoncd-operator/commit/7d9ec4c8d0bf8777aedfb3d6a046a7dc788ea1b6)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#87](https://github.com/alaudadevops/tektoncd-operator/actions/runs/18549473073)
7+
- **Workflow run**: [#127](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20458014001)
88

99
## Files synced:
1010
- docs/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To push to an OCI registry, the Chains controller will look for credentials in t
2727

2828
#### Create a Secret based on existing credentials
2929

30-
If you already ran `docker login`, you can copy the credentials stored in config.json into Kubernetes.
30+
If you already ran `podman login`, you can copy the credentials stored in config.json into Kubernetes.
3131

3232
:::note
3333
Make sure that any external credentials store, such as the native keychain of the operating system, is not used to store the credentials and the config.json is of the format:
@@ -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/development/component-quickstart/index.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Ref : <https://github.com/AlaudaDevops/tektoncd-pipeline/blob/main/.tekton/tp-al
267267
3. **Image Build Phase**
268268
- Build multiple component images in parallel (e.g., tkn, proxy, webhook, operator)
269269
- Each image build includes:
270-
- Build Docker images
270+
- Build OCI images
271271
- Update image tag in `values.yaml` and `config` directory
272272

273273
4. **Artifact Upload Phase**

‎docs/en/development/run_e2e.mdx‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Before starting, please ensure your environment meets the following requirements
1313

1414
### 1. System Requirements
1515
- Linux or macOS operating system
16-
- Docker installed and running
16+
- Podman installed
1717
- At least 4GB available memory
1818
- At least 10GB available disk space
1919

@@ -23,19 +23,19 @@ Before starting, please ensure your environment meets the following requirements
2323
- Cluster version: Kubernetes 1.19+
2424

2525
### 3. Tool Requirements
26-
- `docker` command-line tool
26+
- `podman` command-line tool
2727
- `allure` optional test report reading tool
2828

2929
## Quick Start
3030

3131
### Step 1: Prepare Test Environment
3232

3333
```bash
34-
# Check Docker version
35-
docker version
34+
# Check podman version
35+
podman version
3636

3737
# Pull the E2E test image
38-
docker pull registry.alauda.cn:60070/devops/tektoncd/e2e/operator/operator-e2e:latest
38+
podman pull registry.alauda.cn:60070/devops/tektoncd/e2e/operator/operator-e2e:latest
3939
```
4040

4141
> **Note**: The test image is built from the Dockerfile located at `.tekton/dockerfiles/operator-e2e.Dockerfile`.
@@ -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
@@ -267,7 +267,7 @@ Each toolchain contains the following common configuration items:
267267
### Step 3: Run E2E Tests
268268

269269
```bash
270-
docker run --entrypoint /bin/bash -it \
270+
podman run --entrypoint /bin/bash -it \
271271
-e TESTING_CONFIG=/tmp/workspace/config.yaml \
272272
-e KUBECONFIG=/tmp/workspace/config \
273273
-v ${PWD}/workspace:/tmp/workspace \
@@ -334,7 +334,7 @@ allure open allure-report/
334334
curl -I registry.alauda.cn:60070
335335
336336
# Configure image registry authentication
337-
docker login registry.alauda.cn:60070
337+
podman login registry.alauda.cn:60070
338338
```
339339

340340
4. **Test Timeout**
@@ -358,7 +358,7 @@ Enable debug mode to get more detailed logs:
358358

359359
```bash
360360
# Run tests with debug mode
361-
docker run --entrypoint /bin/bash -it \
361+
podman run --entrypoint /bin/bash -it \
362362
-e TESTING_CONFIG=/tmp/workspace/config.yaml \
363363
-e KUBECONFIG=/tmp/workspace/config \
364364
-e DEBUG=true \

‎docs/en/hub/tutorials/creating-custom-catalog.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ metadata:
9191
tekton.dev/categories: "Build Tools"
9292
9393
# Searchable tags (comma-separated, no spaces after commas)
94-
tekton.dev/tags: "build,docker,container"
94+
tekton.dev/tags: "build,podman,container"
9595
9696
# Human-readable display name
97-
tekton.dev/displayName: "Docker Build Task"
97+
tekton.dev/displayName: "Podman Build Task"
9898
9999
# Supported platforms (optional)
100100
tekton.dev/platforms: "linux/amd64,linux/arm64"

‎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)