Skip to content

Commit c25ca7a

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

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
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

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const config: Config = {
7777
announcementBar: {
7878
id: 'release_v0_3_1',
7979
content:
80-
'🎉️ OpenChoreo <a target="_blank" rel="noopener noreferrer" href="https://github.com/openchoreo/openchoreo/releases/tag/v0.3.2">v0.3.2</a> is released! 🎉️',
80+
'🎉️ OpenChoreo <a target="_blank" rel="noopener noreferrer" href="https://github.com/openchoreo/openchoreo/releases/tag/v0.3.1">v0.3.1</a> is released! 🎉️',
8181
isCloseable: true,
8282
},
8383
algolia: {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[//] # (This file stores the constants used across the documentation.)
22

33
export const versions = {
4-
dockerTag: 'v0.3.2',
4+
dockerTag: 'v0.3.1',
55
githubRef: 'release-v0.3', // Used for the GitHub Raw URL references. Example: main, latest, v0.1.0
6-
helmChart: '0.3.2',
6+
helmChart: '0.3.1',
77
};

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

versioned_docs/version-v0.3.x/getting-started/quick-start-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Once the deployment is complete, you will receive the following message together
138138

139139
```text
140140
✅ Endpoint is ready!
141-
🌍 You can now access the Sample Web Application at: https://react-starter-development.choreoapps.localhost:8443
141+
🌍 You can now access the Sample Web Application at: https://react-starter-image-development.choreoapps.localhost:8443
142142
```
143143

144144
### Understanding What Happens Behind the Scenes

0 commit comments

Comments
 (0)