Skip to content

Commit 94e645b

Browse files
Remove api cr from the doc
1 parent 9dcae5c commit 94e645b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

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

Lines changed: 2 additions & 6 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 -A
4747

4848
# Check the component status
4949
kubectl 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
101101
kubectl get deployment,pod,svc -A | grep greeter
102102

103103
# View the HTTP routing configuration
104104
kubectl 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

110107
OpenChoreo 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

Comments
 (0)