Engineering and technology notes
409 Conflict – Transmission
Active Directory Federation Services
Active Directory Federation Services (AD FS), a software component developed by Microsoft, can run on Windows Server operating systems to provide users with single sign-on access to systems and applications located across organizational boundaries. It uses a claims-based access-control authorization model to maintain application security and to implement federated identity. Claims-based authentication involves authenticating a user based on a set of claims about that user’s identity contained in a trusted token. Such a token is often issued and signed by an entity that is able to authenticate the user by other means, and that is trusted by the entity doing the claims-based authentication. It is part of the Active Directory Services.
https://en.wikipedia.org/wiki/Active_Directory_Federation_Services
MCW-Enterprise-ready-cloud/WDS student guide
GitHub – microsoft/MCW-Enterprise-ready-cloud: MCW Enterprise-ready cloud
Install Kubernete
Install and Deploy Kubernetes on Ubuntu 18.04 LTS
GitHub – microsoft/MCW-Cloud-native-applications: MCW Cloud-native applications
Cloud-Native Applications
Introduction to cloud-native applications
Note how the application is decomposed across a set of small isolated microservices. Each service is self-contained and encapsulates its own code, data, and dependencies. Each is deployed in a software container and managed by a container orchestrator. Instead of a large relational database, each service owns it own datastore, the type of which vary based upon the data needs. Note how some services depend on a relational database, but other on NoSQL databases. One service stores its state in a distributed cache. Note how all traffic routes through an API Gateway service that is responsible for routing traffic to the core back-end services and enforcing many cross-cutting concerns. Most importantly, the application takes full advantage of the scalability and resiliency features found in modern cloud platforms.
https://docs.microsoft.com/en-us/dotnet/architecture/cloud-native/introduction