From 7673accd33eeada430a14b4d431bd8484fae78de Mon Sep 17 00:00:00 2001 From: AJ Date: Tue, 29 Oct 2024 20:39:10 -0400 Subject: [PATCH] fix: fargate name --- cspell.json | 1 + src/.vuepress/sidebar/en.ts | 2 +- src/how-tos/zilla-plus-aws-fargate.md | 14 +++++++------- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/cspell.json b/cspell.json index 246aa92a..a796bb8a 100644 --- a/cspell.json +++ b/cspell.json @@ -29,6 +29,7 @@ "docsearch", "etag", "fanout", + "Fargate", "fontawesome", "gitea", "Grammarly", diff --git a/src/.vuepress/sidebar/en.ts b/src/.vuepress/sidebar/en.ts index 89d554c6..2708ecfe 100644 --- a/src/.vuepress/sidebar/en.ts +++ b/src/.vuepress/sidebar/en.ts @@ -386,7 +386,7 @@ export const enSidebar = sidebar({ ], }, { - text: "Zilla Plus on AWS Fargate", + text: "Zilla Plus on AWS ECS Fargate", icon: "aky-zilla-plus", link: "how-tos/zilla-plus-aws-fargate.md", children: [], diff --git a/src/how-tos/zilla-plus-aws-fargate.md b/src/how-tos/zilla-plus-aws-fargate.md index a68ea0e2..70c1a7cb 100644 --- a/src/how-tos/zilla-plus-aws-fargate.md +++ b/src/how-tos/zilla-plus-aws-fargate.md @@ -1,9 +1,9 @@ --- icon: aky-zilla-plus -description: This Guide will walk you through deploying a simple Zilla Plus service running on AWS Fargate. Zilla Plus is an enterprise-ready, Kafka-native edge, and service proxy. It is a flexible, secure, and reliable way of creating stateless, multi-protocol API entry points into your Kafka cluster for both native and non-native Kafka clients. +description: This Guide will walk you through deploying a simple Zilla Plus service running on AWS ECS Fargate. Zilla Plus is an enterprise-ready, Kafka-native edge, and service proxy. It is a flexible, secure, and reliable way of creating stateless, multi-protocol API entry points into your Kafka cluster for both native and non-native Kafka clients. --- -# Deploying Zilla Plus on AWS Fargate +# Deploying Zilla Plus on AWS ECS Fargate [Available in ](https://www.aklivity.io/products/zilla-plus) {.zilla-plus-badge .hint-container .info} @@ -15,7 +15,7 @@ description: This Guide will walk you through deploying a simple Zilla Plus serv The [](https://aws.amazon.com/marketplace/pp/prodview-lqfqftufwpttm) is an enterprise-ready, Kafka-native edge, and service proxy. It is a flexible, secure, and reliable way of creating stateless, multi-protocol API entry points into your Kafka cluster for both native and non-native Kafka clients. With , you can create publicly reachable Kafka endpoints into a Kafka cluster. You can also expose topics inside your Kafka cluster via declaratively defined REST, SSE, gRPC, and MQTT APIs. -This Guide will walk you through deploying your first service on AWS Fargate. +This Guide will walk you through deploying your first service on AWS ECS Fargate. ## Prerequisites @@ -118,9 +118,9 @@ docker tag zp-example/http-echo:v1 [your-registry-url]/zp-example/http-echo:v1 docker push [your-registry-url]/zp-example/http-echo:v1 ``` -## Create an AWS Fargate Task for your service +## Create an AWS ECS Fargate Task for your service -> This will create the AWS Fargate Task that will be used to deploy your service. +> This will create the AWS ECS Fargate Task that will be used to deploy your service. - Create an IAM role for the Task. This role will be used by the running container. @@ -212,7 +212,7 @@ AmazonECSTaskExecutionRolePolicy ::: -## Create a Service from your AWS Fargate Task +## Create a Service from your AWS ECS Fargate Task > This will create a service based on the configuration in the Task. @@ -246,4 +246,4 @@ Hello, world - In your Task logs, you will see a `BINDING_HTTP_REQUEST_ACCEPTED` log from the above request -Congratulations! You have successfully deployed your first service using AWS Fargate. +Congratulations! You have successfully deployed your first service using AWS ECS Fargate.