diff --git a/docs/getting-started/deploy-first-component.mdx b/docs/getting-started/deploy-first-component.mdx index 4e7de4f..832caf4 100644 --- a/docs/getting-started/deploy-first-component.mdx +++ b/docs/getting-started/deploy-first-component.mdx @@ -43,7 +43,7 @@ Track your component's deployment progress: ```bash # Check that all resources are created -kubectl get component,workload,service,api -A +kubectl get component,workload,service,servicebinding -A # Check the component status kubectl get component greeter-service @@ -95,23 +95,20 @@ Let's examine what OpenChoreo automatically created for your component: ```bash # View the OpenChoreo resources -kubectl get component,workload,service,api -n default +kubectl get component,workload,service,servicebinding -n default # Check the underlying Kubernetes resources kubectl get deployment,pod,svc -A | grep greeter # View the HTTP routing configuration kubectl describe httproute -A | grep -A 20 greeter - -# Check the API definition -kubectl get api greeter-service -n default -o yaml ``` OpenChoreo automatically created: - **Component** - High-level application definition - **Workload** - Container deployment specification - **Service** - API service configuration -- **API** - OpenAPI specification and routing +- **Service Binding** - Environment-specific snapshot of Service and Workload configurations - **Deployment** - Kubernetes deployment managing pods - **Service** - Kubernetes service for networking - **HTTPRoute** - Gateway API routing configuration diff --git a/versioned_docs/version-v0.3.x/getting-started/deploy-first-component.mdx b/versioned_docs/version-v0.3.x/getting-started/deploy-first-component.mdx index 4e7de4f..b79fde5 100644 --- a/versioned_docs/version-v0.3.x/getting-started/deploy-first-component.mdx +++ b/versioned_docs/version-v0.3.x/getting-started/deploy-first-component.mdx @@ -43,7 +43,7 @@ Track your component's deployment progress: ```bash # Check that all resources are created -kubectl get component,workload,service,api -A +kubectl get component,workload,service,servicebinding -A # Check the component status kubectl get component greeter-service @@ -95,7 +95,7 @@ Let's examine what OpenChoreo automatically created for your component: ```bash # View the OpenChoreo resources -kubectl get component,workload,service,api -n default +kubectl get component,workload,service,servicebinding -n default # Check the underlying Kubernetes resources kubectl get deployment,pod,svc -A | grep greeter @@ -111,7 +111,7 @@ OpenChoreo automatically created: - **Component** - High-level application definition - **Workload** - Container deployment specification - **Service** - API service configuration -- **API** - OpenAPI specification and routing +- **Service Binding** - Environment-specific snapshot of Service and Workload configurations - **Deployment** - Kubernetes deployment managing pods - **Service** - Kubernetes service for networking - **HTTPRoute** - Gateway API routing configuration