Skip to content

Commit 310e963

Browse files
Add service binding information to doc
1 parent 94e645b commit 310e963

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

docs/getting-started/deploy-first-component.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Track your component's deployment progress:
4343

4444
```bash
4545
# Check that all resources are created
46-
kubectl get component,workload,service -A
46+
kubectl get component,workload,service,servicebinding -A
4747

4848
# Check the component status
4949
kubectl get component greeter-service
@@ -95,7 +95,7 @@ Let's examine what OpenChoreo automatically created for your component:
9595

9696
```bash
9797
# View the OpenChoreo resources
98-
kubectl get component,workload,service -n default
98+
kubectl get component,workload,service,servicebinding -n default
9999

100100
# Check the underlying Kubernetes resources
101101
kubectl get deployment,pod,svc -A | grep greeter
@@ -108,6 +108,7 @@ OpenChoreo automatically created:
108108
- **Component** - High-level application definition
109109
- **Workload** - Container deployment specification
110110
- **Service** - API service configuration
111+
- **Service Binding** - Environment-specific snapshot of Service and Workload configurations
111112
- **Deployment** - Kubernetes deployment managing pods
112113
- **Service** - Kubernetes service for networking
113114
- **HTTPRoute** - Gateway API routing configuration

versioned_docs/version-v0.3.x/getting-started/deploy-first-component.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Track your component's deployment progress:
4343

4444
```bash
4545
# Check that all resources are created
46-
kubectl get component,workload,service,api -A
46+
kubectl get component,workload,service,servicebinding -A
4747

4848
# Check the component status
4949
kubectl get component greeter-service
@@ -95,7 +95,7 @@ Let's examine what OpenChoreo automatically created for your component:
9595

9696
```bash
9797
# View the OpenChoreo resources
98-
kubectl get component,workload,service,api -n default
98+
kubectl get component,workload,service,servicebinding -n default
9999

100100
# Check the underlying Kubernetes resources
101101
kubectl get deployment,pod,svc -A | grep greeter
@@ -111,7 +111,7 @@ OpenChoreo automatically created:
111111
- **Component** - High-level application definition
112112
- **Workload** - Container deployment specification
113113
- **Service** - API service configuration
114-
- **API** - OpenAPI specification and routing
114+
- **Service Binding** - Environment-specific snapshot of Service and Workload configurations
115115
- **Deployment** - Kubernetes deployment managing pods
116116
- **Service** - Kubernetes service for networking
117117
- **HTTPRoute** - Gateway API routing configuration

0 commit comments

Comments
 (0)