@@ -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 -A
4747
4848# Check the component status
4949kubectl get component greeter-service
@@ -95,23 +95,19 @@ 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 -n default
9999
100100# Check the underlying Kubernetes resources
101101kubectl get deployment,pod,svc -A | grep greeter
102102
103103# View the HTTP routing configuration
104104kubectl describe httproute -A | grep -A 20 greeter
105-
106- # Check the API definition
107- kubectl get api greeter-service -n default -o yaml
108105```
109106
110107OpenChoreo automatically created:
111108- ** Component** - High-level application definition
112109- ** Workload** - Container deployment specification
113110- ** Service** - API service configuration
114- - ** API** - OpenAPI specification and routing
115111- ** Deployment** - Kubernetes deployment managing pods
116112- ** Service** - Kubernetes service for networking
117113- ** HTTPRoute** - Gateway API routing configuration
0 commit comments