Skip to content

Commit f4dfc2d

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/connectors-operator on d57e272d4c0b22639843c60015a108091ee215ef
Source: feat: update connector images to v1.8.0 and add annotations for registry configuration (#599) Author: kycheng Ref: refs/heads/main Commit: d57e272d4c0b22639843c60015a108091ee215ef This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/connectors-operator/commit/d57e272d4c0b22639843c60015a108091ee215ef 🤖 Synced on 2026-02-10 09:54:29 UTC
1 parent fc8d3b2 commit f4dfc2d

9 files changed

Lines changed: 13 additions & 13 deletions

‎.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**: 2026-02-04 03:12:00 UTC
3+
- **Last synced**: 2026-02-10 09:54:29 UTC
44
- **Source repository**: alaudadevops/connectors-operator
5-
- **Source commit**: [edf071ca503ed126f3e00cad712ac1002f7f2760](https://github.com/alaudadevops/connectors-operator/commit/edf071ca503ed126f3e00cad712ac1002f7f2760)
5+
- **Source commit**: [d57e272d4c0b22639843c60015a108091ee215ef](https://github.com/alaudadevops/connectors-operator/commit/d57e272d4c0b22639843c60015a108091ee215ef)
66
- **Triggered by**: edge-katanomi-app2[bot]
7-
- **Workflow run**: [#94](https://github.com/alaudadevops/connectors-operator/actions/runs/21656936624)
7+
- **Workflow run**: [#95](https://github.com/alaudadevops/connectors-operator/actions/runs/21860079377)
88

99
## Files synced:
1010
- docs/

‎docs/en/connectors-harbor/concepts/harbor_connectorclass.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Additionally, you need to mount the configuration files into the Pod and configu
158158

159159
The OCI Connector created based on the OCI Connector type provides the following configurations:
160160

161-
**config**: Configuration information required by OCI CLI like buildkit, buildah, etc.
161+
**registry-config**: Configuration information required by OCI CLI like buildkit, buildah, etc.
162162

163163
- Provides the `config.json` configuration file.
164164
- Contains the authentication information required to access the proxy.

‎docs/en/connectors-harbor/how_to/using_harbor_connector_forward_proxy_in_tekton_pipeline.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
driver: connectors-csi
6464
volumeAttributes:
6565
connector.name: "harbor-connector"
66-
configuration.names: "config"
66+
configuration.names: "registry-config"
6767
```
6868
6969
### Using Forward Proxy with Custom Commands
@@ -87,7 +87,7 @@ spec:
8787
driver: connectors-csi
8888
volumeAttributes:
8989
connector.name: "harbor-connector"
90-
configuration.names: "config"
90+
configuration.names: "registry-config"
9191
params:
9292
- name: cmd
9393
value: |

‎docs/en/connectors-harbor/how_to/using_harbor_connector_in_k8s.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ volumes:
9090
driver: connectors-csi
9191
volumeAttributes:
9292
connector.name: "harbor"
93-
configuration.names: "config"
93+
configuration.names: "registry-config"
9494
```
9595

9696
> For the configuration information of the Harbor ConnectorClass, please refer to [Harbor ConnectorClass Configuration](../concepts/harbor_connectorclass.mdx#proxy_and_configuration_capabilities).

‎docs/en/connectors-harbor/how_to/using_harbor_connector_in_k8s_job.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ spec:
205205
driver: connectors-csi
206206
volumeAttributes:
207207
connector.name: "harbor"
208-
configuration.names: "config"
208+
configuration.names: "registry-config"
209209
210210
# Mounting buildkitd.toml to the Pod
211211
- name: buildkitd-config

‎docs/en/connectors-harbor/how_to/using_harbor_connector_reverse_proxy_in_tekton_pipeline.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ spec:
143143
readOnly: true
144144
volumeAttributes:
145145
connector.name: "harbor"
146-
configuration.names: "config"
146+
configuration.names: "registry-config"
147147
- name: buildkitd-config
148148
csi: # Mount buildkitd.toml
149149
driver: connectors-csi

‎docs/en/connectors-harbor/quick_start.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ kubectl get job image-build -n connectors-harbor-demo
164164
Key parameters in the volume definition:
165165
- `connector.name`: The name of your OCI connector
166166
- `configuration.names`: Specifies which configuration to generate from the OCI ConnectorClass:
167-
- `"config"`: Generates authentication config (config.json) needed for any registry operations
167+
- `"registry-config"`: Generates authentication config (config.json) needed for any registry operations
168168
- `"buildkitd"`: Generates BuildKit daemon config for insecure registry access
169169
- if not specified, will be mounted [default configurations](../connectors/concepts/connectors_csi.mdx#built-in-configurations)
170170
- `mountPath`: Specifies where the configuration file should be mounted in the container:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
driver: connectors-csi
6464
volumeAttributes:
6565
connector.name: "oci-connector"
66-
configuration.names: "config"
66+
configuration.names: "registry-config"
6767
```
6868
6969
### Using Forward Proxy with Custom Commands
@@ -87,7 +87,7 @@ spec:
8787
driver: connectors-csi
8888
volumeAttributes:
8989
connector.name: "oci-connector"
90-
configuration.names: "config"
90+
configuration.names: "registry-config"
9191
params:
9292
- name: cmd
9393
value: |

‎docs/en/overview/release_notes.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following table shows the compatibility and support matrix between the Alaud
2626

2727
### Features and Enhancements
2828

29-
- Added `registry-config` configuration to OCI and Harbor ConnectorClasses. The legacy `docker-config` configuration is now deprecated but remains functional for backward compatibility. It will be removed in a future release. When mounting Connector configurations, use `registry-config` instead of `docker-config`.
29+
- Added `registry-config` configuration to OCI and Harbor ConnectorClasses. The legacy `docker-config(oci)` and `config(harbor)` configuration is now deprecated but remains functional for backward compatibility. It will be removed in a future release. When mounting Connector configurations, use `registry-config` instead of `docker-config` or `config`.
3030
- Added `registry-config` workspace to OCIArtifact and HarborOCIArtifact ResourceInterfaces. The legacy `docker-credentials` workspace is now deprecated but remains functional for backward compatibility. It will be removed in a future release.
3131

3232
### Breaking Changes

0 commit comments

Comments
 (0)