KEMBAR78
Deploy Microservices To Kubernetes Without Secrets by Reenu Saluja | PPTX
Deploy microservices to
Kubernetes without secrets
with the new Azure SDKs, Project Tye, and AKS
Reenu Saluja
Linkedin @reenusaluja
The new Azure SDK Effort
OLD
NEW
Repos Langs OS CI Packages
more coming soon…
.NET Java
JS/TS Python
aka.ms/azsdk
Azure Identity
var cred = new DefaultAzureCredential();
var cred = new ChainedTokenCredential(
new ManagedIdentityCredential(),
new AzureCliCredential()
);
var client = new BlobServiceClient(uri, cred);
DEV PROD
docs.microsoft.com/dotnet/api/azure.identity
① Post Image
Form
Recognizer
Text
Analytics
Blazor
WebAssembly
Web App
ASP.NET Core
API
.NET Core
Service
Queue
Storage
Cosmos
③
Add
Message
Architecture
Table
Storage
Blob
Storage
Persistent Storage
App
Config
AI
Messaging
Image Storage
Config
Azure
Function
Data Provider
SignalR
Service
⑩ Send Message
Lets deep dive in code
Project Tye
github.com/dotnet/tye
Project
Tye
SKAFFOLD
KUBERNETES
DOCKER
COMPOSE
DOCKER
Project Tye – Simplify Microservices Dev & Deploy
Thanks for joining!

Deploy Microservices To Kubernetes Without Secrets by Reenu Saluja

Editor's Notes

  • #4 Azure Identity is a new library that simplifies how you get tokens that you need to interact with Azure services. It uses Microsoft Identity under the covers.
  • #8 Developing containerized microservices is not easy. You need to use many tools With Project Tye, you aren’t required to learn Docker, Kubernetes, scaffold, compose, and docker-compose to build microservice applications.