Skip to content

Commit c0524e9

Browse files
committed
📚 Sync docs from alaudadevops/connectors-operator on 610601746c23c75326edb09c81d4d6b642a39d86
Source: feat: support connector oci deploy expose change. (#94) Author: kycheng Ref: refs/heads/main Commit: 610601746c23c75326edb09c81d4d6b642a39d86 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: AlaudaDevops/connectors-operator@6106017 🤖 Synced on 2025-07-08 08:36:32 UTC
1 parent 46c66dd commit c0524e9

File tree

2 files changed

+38
-5
lines changed

2 files changed

+38
-5
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-07-07 03:37:17 UTC
3+
- **Last synced**: 2025-07-08 08:36:32 UTC
44
- **Source repository**: alaudadevops/connectors-operator
5-
- **Source commit**: [cfc715d72aca3113a8a6c335b30b4ea0743c369e](https://github.com/alaudadevops/connectors-operator/commit/cfc715d72aca3113a8a6c335b30b4ea0743c369e)
6-
- **Triggered by**: chengjingtao
7-
- **Workflow run**: [#2](https://github.com/alaudadevops/connectors-operator/actions/runs/16106973390)
5+
- **Source commit**: [610601746c23c75326edb09c81d4d6b642a39d86](https://github.com/alaudadevops/connectors-operator/commit/610601746c23c75326edb09c81d4d6b642a39d86)
6+
- **Triggered by**: kycheng
7+
- **Workflow run**: [#4](https://github.com/alaudadevops/connectors-operator/actions/runs/16138230910)
88

99
## Files synced:
1010
- docs/

‎docs/en/install.mdx‎

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ To add support for container registries, like Harbor, Docker Registry, etc., ins
211211
212212
1. Create the ConnectorsOCI custom resource:
213213
214+
ClusterIP Expose:
214215
```bash
215216
cat <<EOF | kubectl apply -f -
216217
apiVersion: operator.connectors.alauda.io/v1alpha1
@@ -222,6 +223,38 @@ To add support for container registries, like Harbor, Docker Registry, etc., ins
222223
EOF
223224
```
224225
226+
NodePort Expose:
227+
```bash
228+
cat <<EOF | kubectl apply -f -
229+
apiVersion: operator.connectors.alauda.io/v1alpha1
230+
kind: ConnectorsOCI
231+
metadata:
232+
name: connectors-oci
233+
namespace: connectors-system
234+
spec:
235+
expose:
236+
type: NodePort
237+
domain: 192.168.1.123
238+
nodePort:
239+
port: 30000
240+
EOF
241+
```
242+
243+
Ingress Expose:
244+
245+
```bash
246+
cat <<EOF | kubectl apply -f -
247+
apiVersion: operator.connectors.alauda.io/v1alpha1
248+
kind: ConnectorsOCI
249+
metadata:
250+
name: connectors-oci
251+
namespace: connectors-system
252+
spec:
253+
expose:
254+
type: Ingress
255+
domain: connectors.proxy.com
256+
```
257+
225258
2. Monitor the deployment progress:
226259
227260
```bash
@@ -421,4 +454,4 @@ spec:
421454
additionalManifests: "<additional manifests>"
422455
423456
# Other configurations as needed
424-
```
457+
```

0 commit comments

Comments
 (0)