Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 5bcd085

Browse files
hkyyxzastrowm
authored andcommitted
Fix EKS deployment framework references
1 parent 9f780d6 commit 5bcd085

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

site/src/content/docs/user-guide/deploy/deploy_to_amazon_eks.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This guide discuss EKS integration at a high level - for a complete example proj
1313

1414
## Creating Your Agent in Python
1515

16-
The core of your EKS deployment is a containerized Flask application that hosts your Strands Agents SDK agent. This Python application initializes your agent and processes incoming HTTP requests.
16+
The core of your EKS deployment is a containerized FastAPI application that hosts your Strands Agents SDK agent. This Python application initializes your agent and processes incoming HTTP requests.
1717

1818
The FastAPI application follows these steps:
1919

@@ -121,7 +121,7 @@ The implementation above employs a [custom tool](../concepts/tools/custom-tools.
121121

122122
## Containerization
123123

124-
To deploy your agent to EKS, you need to containerize it using Podman or Docker. The Dockerfile defines how your application is packaged and run. Below is an example Docker file that installs all needed dependencies, the application, and configures the FastAPI server to run via unicorn ([Dockerfile][dockerfile]):
124+
To deploy your agent to EKS, you need to containerize it using Podman or Docker. The Dockerfile defines how your application is packaged and run. Below is an example Docker file that installs all needed dependencies, the application, and configures the FastAPI server to run via Uvicorn ([Dockerfile][dockerfile]):
125125

126126
```dockerfile
127127
FROM public.ecr.aws/docker/library/python:3.12-slim
@@ -228,4 +228,4 @@ For the complete example code, including all files and configurations, see the
228228
[project_code]: https://github.com/strands-agents/docs/tree/main/docs/examples/deploy_to_eks
229229
[app_py]: https://github.com/strands-agents/docs/tree/main/docs/examples/deploy_to_eks/docker/app/app.py
230230
[dockerfile]: https://github.com/strands-agents/docs/tree/main/docs/examples/deploy_to_eks/docker/Dockerfile
231-
[values_yaml]: https://github.com/strands-agents/docs/tree/main/docs/examples/deploy_to_eks/chart/values.yaml
231+
[values_yaml]: https://github.com/strands-agents/docs/tree/main/docs/examples/deploy_to_eks/chart/values.yaml

0 commit comments

Comments
 (0)