Skip to content

Commit dc253f9

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 008418e262fa3d4198fa49b2e601f08fa861f54a
Source: docs: remove docker in docs (#718) Author: yzc Ref: refs/heads/main Commit: 008418e262fa3d4198fa49b2e601f08fa861f54a This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/008418e262fa3d4198fa49b2e601f08fa861f54a 🤖 Synced on 2025-10-31 08:06:45 UTC
1 parent af52b70 commit dc253f9

File tree

14 files changed

+32
-32
lines changed

14 files changed

+32
-32
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-24 10:07:41 UTC
3+
- **Last synced**: 2025-10-31 08:06:45 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [d921020f4508eb6f1f5702573d8c63238527f1e1](https://github.com/alaudadevops/tektoncd-operator/commit/d921020f4508eb6f1f5702573d8c63238527f1e1)
5+
- **Source commit**: [008418e262fa3d4198fa49b2e601f08fa861f54a](https://github.com/alaudadevops/tektoncd-operator/commit/008418e262fa3d4198fa49b2e601f08fa861f54a)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#89](https://github.com/alaudadevops/tektoncd-operator/actions/runs/18776535041)
7+
- **Workflow run**: [#90](https://github.com/alaudadevops/tektoncd-operator/actions/runs/18966544073)
88

99
## Files synced:
1010
- docs/

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

Lines changed: 1 addition & 1 deletion
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:

‎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: 7 additions & 7 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,7 +23,7 @@ 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
@@ -32,10 +32,10 @@ Before starting, please ensure your environment meets the following requirements
3232

3333
```bash
3434
# Check Docker version
35-
docker 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`.
@@ -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-tasks.mdx‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ metadata:
5353
annotations:
5454
tekton.dev/pipelines.minVersion: "0.17.0" # Minimum Tekton version
5555
tekton.dev/categories: "Build Tools" # Hub category
56-
tekton.dev/tags: "build,docker,image" # Hub search tags
57-
tekton.dev/displayName: "Build Docker Image" # Hub display name
56+
tekton.dev/tags: "build,podman,image" # Hub search tags
57+
tekton.dev/displayName: "Build Podman Image" # Hub display name
5858
tekton.dev/platforms: "linux/amd64,linux/arm64" # Supported platforms
5959
```
6060

@@ -102,7 +102,7 @@ metadata:
102102

103103
### Effective Tagging
104104
- Use specific, searchable tags
105-
- Include technology names (`docker`, `kubernetes`, `npm`, etc.)
105+
- Include technology names (`podman`, `kubernetes`, `npm`, etc.)
106106
- Add use case tags (ci, cd, build, test, deploy)
107107

108108
## `Hub` Validation Requirements

‎docs/en/pipelines/concepts/stepaction_concept.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ spec:
170170
- name: context
171171
type: string
172172
default: "."
173-
image: docker
173+
image: podman
174174
env:
175175
- name: IMAGE_NAME
176176
value: $(params.image.name)
177177
- name: IMAGE_TAG
178178
value: $(params.image.tag)
179179
script: |
180-
docker build -t $IMAGE_NAME:$IMAGE_TAG $(params.context)
180+
podman build -t $IMAGE_NAME:$IMAGE_TAG $(params.context)
181181
```
182182
183183
### Results

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following scenarios require referring to the guidance in this document:
2727

2828
Before using this feature, ensure:
2929

30-
- You have a Docker image building environment
30+
- You have a OCI image building environment
3131
- You can use the platform's native build pipeline
3232
- If you need to use community/open-source tools, ensure you have internet access or have prepared offline packages
3333
- You have a basic understanding of Dockerfile writing
@@ -43,7 +43,7 @@ First, confirm the release version of the base image, as the command for creatin
4343

4444
```bash
4545
# Check the release version of the base image
46-
$ docker run -it --rm ${registry} cat /etc/os-release
46+
$ podman run -it --rm ${registry} cat /etc/os-release
4747

4848
# Possible outputs
4949
NAME="Alpine Linux"
@@ -105,13 +105,13 @@ After building, validate whether the image can run correctly:
105105

106106
```bash
107107
# Verify user configuration
108-
$ docker run -it --rm ${registry} id
108+
$ podman run -it --rm ${registry} id
109109

110110
# Expected output
111111
uid=65532(nonroot) gid=65532(nonroot) groups=65532(nonroot)
112112

113113
# Verify application permissions
114-
$ docker run -it --rm ${registry} ls -la /home/nonroot
114+
$ podman run -it --rm ${registry} ls -la /home/nonroot
115115
```
116116

117117
## Operation Results

‎docs/en/pipelines/trouble_shooting/custom_image_pod_creation_failed.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If this issue only appears when using custom images, it is recommended to follow
4747

4848
1. Verify if the image itself has issues:
4949
```bash
50-
$ docker run -it --rm ${registry} ${cmd}
50+
$ podman run -it --rm ${registry} ${cmd}
5151
```
5252

5353
2. Check the compatibility of the Task configuration with the image:

‎docs/en/pipelines/trouble_shooting/custom_images_cannot_be_used_in_the_run-script.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ If this issue occurs only when using the custom image, it is recommended to trou
5050
5151
1. Verify whether there are insufficient permissions with the image when run as the root user:
5252
```bash
53-
$ docker run -it --rm --user root ${registry} ${cmd}
53+
$ podman run -it --rm --user root ${registry} ${cmd}
5454
```
5555

5656
2. Check if the application allows user 65532 to access specific directories or files:
5757
```bash
58-
$ docker run -it --rm --user 65532:65532 ${registry} ${cmd} ls -la /path/to/directory
58+
$ podman run -it --rm --user 65532:65532 ${registry} ${cmd} ls -la /path/to/directory
5959
```
6060

6161
3. Check the securityContext configuration of the Task:

0 commit comments

Comments
 (0)