AKS components I assumed that you are familiar with the Kubernetes Cluster concepts (elementary level). Therefore I didn’t do any deep dive into the elementary components. The focus of this post is the following topics: The control plane (Kubernetes core component) It’s the core of the Kubernetes Cluster and doesn’t matter on which cloud providerContinue reading “Azure Kubernetes Service (AKS) with Terraform deployment”
Category Archives: Development
Design Patterns
Software Design Patterns Throttling Repository Pipes & Filter Microservices Design Patterns Database-per-Service Domain Driven
Throttling Design Pattern
Knows as Rate Limiting. We place a throttle in front of the target service or process to control control the rate of the invocations or data flow into the target. We can use the cloud services to apply this design pattern. This can be useful if we have an old system and we don’t wantContinue reading “Throttling Design Pattern”
Develop frontend for backend via Vue
Related topics Develop containerized microservices in VS Develop Azure Function App in VS Scenario: When the caller and called application are not in the same origin the CORS Policy doesn’t allow the called application / backend to response the caller application. It’s strongly recommended to specify the allow origin in your backend. In the following video IContinue reading “Develop frontend for backend via Vue”
Authentication methods
Azure Authentication via Active Directory Disadvantage of Active Directory If a company has use the Active Directory of the authentication and the personals are allowed to do home office, therefore they need to use VPN Connection to authenticate to the company’s Active Directory. This isn’t so secure. Manage and authentication for mobile and modern devicesContinue reading “Authentication methods”