├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app └── README.md ├── cluster-bootstrap ├── bootstrap-advanced.sh └── bootstrap-basic.sh ├── cluster-management └── README.md ├── gitops-baseconfig └── falco.yaml ├── gitops-clusterconfig └── namespaces.yaml ├── observability └── README.md ├── presentation └── AKS Production Patterns Workshop.pptx ├── security └── README.md └── servicemesh └── README.md /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/app/README.md -------------------------------------------------------------------------------- /cluster-bootstrap/bootstrap-advanced.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /cluster-bootstrap/bootstrap-basic.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /cluster-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/cluster-management/README.md -------------------------------------------------------------------------------- /gitops-baseconfig/falco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/gitops-baseconfig/falco.yaml -------------------------------------------------------------------------------- /gitops-clusterconfig/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/gitops-clusterconfig/namespaces.yaml -------------------------------------------------------------------------------- /observability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/observability/README.md -------------------------------------------------------------------------------- /presentation/AKS Production Patterns Workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/presentation/AKS Production Patterns Workshop.pptx -------------------------------------------------------------------------------- /security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/security/README.md -------------------------------------------------------------------------------- /servicemesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aks-production-patterns/HEAD/servicemesh/README.md --------------------------------------------------------------------------------