Skip to content

Commit 16ef134

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 79c82103b0d9b83948b85aa2efcccf84e52ee0c9
Source: docs: [DEVOPS-43043] remove docker in docs for release-4.0 (#1030) Author: yzc Ref: refs/heads/release-4.0 Commit: 79c82103b0d9b83948b85aa2efcccf84e52ee0c9 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/79c82103b0d9b83948b85aa2efcccf84e52ee0c9 🤖 Synced on 2025-12-23 10:14:51 UTC
1 parent 501b4db commit 16ef134

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
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 02:41:23 UTC
3+
- **Last synced**: 2025-12-23 10:14:51 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [ac66c7dc8162b89e762f9528ae9d891710e4fb24](https://github.com/alaudadevops/tektoncd-operator/commit/ac66c7dc8162b89e762f9528ae9d891710e4fb24)
5+
- **Source commit**: [79c82103b0d9b83948b85aa2efcccf84e52ee0c9](https://github.com/alaudadevops/tektoncd-operator/commit/79c82103b0d9b83948b85aa2efcccf84e52ee0c9)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#111](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20120145965)
7+
- **Workflow run**: [#124](https://github.com/alaudadevops/tektoncd-operator/actions/runs/20457922602)
88

99
## Files synced:
1010
- docs/

‎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

‎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/pod_templates_concept.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Pod template configuration supports the fields listed in the table below.
251251
| automountServiceAccountToken | **Default:** true. Determines whether Tekton automatically provides the token for the service account used by the Pod inside containers at a predefined path. |
252252
| dnsPolicy | **Default:** ClusterFirst. Specifies the [DNS policy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy) for the Pod. Legal values are ClusterFirst, Default, and None. Does **not** support ClusterFirstWithHostNet because Tekton Pods cannot run with host networking. |
253253
| dnsConfig | Specifies [additional DNS configuration for the Pod](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-config), such as name servers and search domains. |
254-
| enableServiceLinks | **Default:** true. Determines whether services in the Pod's namespace are exposed as environment variables to the Pod, similarly to Docker service links. |
254+
| enableServiceLinks | **Default:** true. Determines whether services in the Pod's namespace are exposed as environment variables to the Pod. |
255255
| priorityClassName | Specifies the [priority class](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/) for the Pod. Allows you to selectively enable preemption on lower-priority workloads. |
256256
| schedulerName | Specifies the [scheduler](https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/) to use when dispatching the Pod. You can specify different schedulers for different types of workloads, such as volcano.sh for machine learning workloads. |
257257
| imagePullSecrets | Specifies the [secret](https://kubernetes.io/docs/concepts/configuration/secret/) to use when [ pulling a container image](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/). |

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

0 commit comments

Comments
 (0)