Skip to content

Commit

Permalink
updated readme with blue/green deployment info.
Browse files Browse the repository at this point in the history
  • Loading branch information
VeritasSoftware committed Sep 3, 2024
1 parent 3eeaf14 commit 9352c8e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Docs/README_ConfigSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,16 @@ public class ActionFilterService : IGatewayActionFilter
await Task.CompletedTask;
}
}
```
```

### Deployment to Prod

As with any Web API, when there is any code change, the API Gateway too is published and deployed using **Blue/Green deployment**.

This is available in **Azure** & **AWS**.

In Azure App Service, you use **deployment slots**. Read [more](https://learn.microsoft.com/en-us/azure/app-service/deploy-best-practices#use-deployment-slots).

In AWS, you use **Elastic Beanstalk**. Read [more](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.CNAMESwap.html).

So, there is no down time.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,18 @@ and pass it to the Api Orchestrator in the Create method.

Read [**more**](/Docs/README_ConfigSettings.md).

### Deployment to Prod

As with any Web API, when there is any code change, the API Gateway too is published and deployed using **Blue/Green deployment**.

This is available in **Azure** & **AWS**.

In Azure App Service, you use **deployment slots**. Read [more](https://learn.microsoft.com/en-us/azure/app-service/deploy-best-practices#use-deployment-slots).

In AWS, you use **Elastic Beanstalk**. Read [more](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.CNAMESwap.html).

So, there is no down time.

### Verbs usage & Routing

You can check out how the Api Gateway supported Verbs are used & Routing below.
Expand Down

0 comments on commit 9352c8e

Please sign in to comment.