Skip to content

Commit 63fb057

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/connectors-operator on 9099e318a8b0bbe5b0f11f4a262325c505fa9cb1
Source: remove dockerd configuration and refactor e2e cases (#437) Author: chengjingtao Ref: refs/heads/release-1.6 Commit: 9099e318a8b0bbe5b0f11f4a262325c505fa9cb1 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/connectors-operator/commit/9099e318a8b0bbe5b0f11f4a262325c505fa9cb1 🤖 Synced on 2025-12-12 09:43:12 UTC
1 parent d7acba4 commit 63fb057

File tree

4 files changed

+5
-55
lines changed

4 files changed

+5
-55
lines changed

‎.github/SYNC_INFO.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Documentation Sync Information
22

3-
- **Last synced**: 2025-12-11 13:05:49 UTC
3+
- **Last synced**: 2025-12-12 09:43:12 UTC
44
- **Source repository**: alaudadevops/connectors-operator
5-
- **Source commit**: [d475ebe5b2141095afaa49a98962efffef4406e5](https://github.com/alaudadevops/connectors-operator/commit/d475ebe5b2141095afaa49a98962efffef4406e5)
6-
- **Triggered by**: chengjingtao
7-
- **Workflow run**: [#61](https://github.com/alaudadevops/connectors-operator/actions/runs/20134084667)
5+
- **Source commit**: [9099e318a8b0bbe5b0f11f4a262325c505fa9cb1](https://github.com/alaudadevops/connectors-operator/commit/9099e318a8b0bbe5b0f11f4a262325c505fa9cb1)
6+
- **Triggered by**: edge-katanomi-app2[bot]
7+
- **Workflow run**: [#63](https://github.com/alaudadevops/connectors-operator/actions/runs/20162719178)
88

99
## Files synced:
1010
- docs/

‎docs/en/connectors-oci/concepts/oci_connectorclass.mdx‎

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -223,21 +223,6 @@ For example:
223223
}
224224
```
225225

226-
**dockerd**: Configuration information for the Docker Daemon.
227-
228-
- Provides the `daemon.json` configuration file.
229-
- In the configuration file, the current connector will be set as `insecure-registries` by default.
230-
231-
For example:
232-
233-
```json
234-
{
235-
"insecure-registries": [
236-
"<proxy address of the connector>"
237-
]
238-
}
239-
```
240-
241226
**buildkitd**: Configuration information required by the BuildKit Daemon.
242227

243228
- Provides the `buildkitd.toml` configuration file.

‎docs/en/connectors-oci/how_to/using_oci_connector_in_k8s.mdx‎

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,18 +99,6 @@ volumes:
9999

100100
Since the proxy service provided by the connector uses HTTP protocol, it is necessary to configure `insecure-registries` on the client. Different clients have different configuration methods:
101101

102-
`dockerd` can specify this through `daemon.json`. The OCI ConnectorClass provides an out-of-the-box configuration for `dockerd`, which can be mounted through connector-csi.
103-
104-
```yaml
105-
- name: dockerd-config
106-
csi:
107-
readOnly: true
108-
driver: connectors-csi
109-
volumeAttributes:
110-
connector.name: "harbor"
111-
configuration.names: "dockerd"
112-
```
113-
114102
`buildkitd.yaml` can specify this through `buildkitd.toml`. The OCI ConnectorClass provides an out-of-the-box configuration for `buildkitd`, which can be mounted through connector-csi.
115103

116104
```yaml

‎docs/en/connectors-oci/trouble_shooting/csi_driver_issues.mdx‎

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ volumes:
3838
3939
| Configuration Name | Description | Use Case |
4040
|-------------------|-------------|----------|
41-
| `docker-config` | Standard Docker configuration | General container operations |
42-
| `dockerd` | Docker daemon configuration | For Docker daemon in Docker pattern |
41+
| `docker-config` | Standard Docker client configuration | General container operations |
4342
| `buildkitd` | BuildKit daemon configuration | For BuildKit based operations |
4443

4544
**Common configuration issues**:
@@ -78,7 +77,6 @@ volumeMounts:
7877
| Configuration | Recommended Mount Path | Description |
7978
|---------------|------------------------|-------------|
8079
| `docker-config` | `/root/.docker` or `$HOME/.docker` | Docker client configuration directory |
81-
| `dockerd` | `/etc/docker` | Docker daemon configuration directory |
8280
| `buildkitd` | `/etc/buildkit` | BuildKit daemon configuration directory |
8381

8482

@@ -114,9 +112,6 @@ Locate the configuration files:
114112
# For docker-config
115113
kubectl exec <pod-name> -n <namespace> -- cat /root/.docker/config.json
116114
117-
# For dockerd
118-
kubectl exec <pod-name> -n <namespace> -- cat /etc/docker/daemon.json
119-
120115
# For buildkitd
121116
kubectl exec <pod-name> -n <namespace> -- cat /etc/buildkit/buildkitd.toml
122117
```
@@ -150,24 +145,6 @@ kubectl exec <pod-name> -n <namespace> -- cat /root/.docker/config.json
150145
}
151146
```
152147

153-
### dockerd configuration
154-
155-
Check the generated `daemon.json` file:
156-
157-
```bash
158-
kubectl exec <pod-name> -n <namespace> -- cat /etc/docker/daemon.json
159-
```
160-
161-
**Expected configuration elements**:
162-
163-
```json
164-
{
165-
"insecure-registries": [
166-
"c-<connector-name>.<namespace>.svc.cluster.local"
167-
]
168-
}
169-
```
170-
171148
### buildkitd configuration
172149

173150
Check the generated `buildkitd.toml` file:

0 commit comments

Comments
 (0)