Skip to content

Commit

Permalink
aks provisioning reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
darkn3rd committed Aug 9, 2021
1 parent e38f5cf commit bab7e83
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions kubernetes/aks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

This is material related to Azure Kubernetes series.

* [Series 0: Provisioning](series_0_provisioning/README.md) - covers standing up AKS cluster.
* [Series 1: Endpoint](series_1_endpoint/README.md) - managing endpoint access into a Kubernetes cluster using ingress or service (type Loadbalancer) Kubernetes resources with automation for DNS record upserts, issuing X.509 certificiates, and reverse proxy.
* [Series 2: Progresssive Networking](series_1_network_mgmnt/README.md) - manaing networks with network policies and service meshes. for internal security and laod balancing.
5 changes: 5 additions & 0 deletions kubernetes/aks/series_0_provisioning/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Provisioning AKS

This area covers topics on standing up an AKS cluster.

* [Part 1: Basic with Azure CLI](./part_1_basic_az/README.md) - this cover creating a basic cluster using Azure CLI (`az`). The cluster will come with basic overlay network plugin `kubenet` and doesn't support an ingress controller or network policies.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions kubernetes/aks/series_1_endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This will cover the following topics:

## Sections

* [Part 1: external-dns](./1_externaldns/README.md) - automating upserts on Azure DNS zone for the `service` resource.
* [Part 2: HTTP ingress (ingress-nginx)](./2_ingress_nginx/README.md) - adding an ingress controller to route L7 (HTTP) traffic to backend services
* [Part 2: cert-manager](./3_cert_manager/README.md) - automatically issuing certificates for an ingress with `DNS01` validation to an Azure DNS zone.
* [Part 3: gRPC ingress (ingress-nginx)](./4_ingress_nginx_grpc/README.md) - using ingress controller to route mixed gRPC (HTTP/2) and HTTP.
* [Part 1: external-dns](./part_1_externaldns/README.md) - automating upserts on Azure DNS zone for the `service` resource.
* [Part 2: HTTP ingress (ingress-nginx)](./part_2_ingress_nginx/README.md) - adding an ingress controller to route L7 (HTTP) traffic to backend services
* [Part 2: cert-manager](./part_3_cert_manager/README.md) - automatically issuing certificates for an ingress with `DNS01` validation to an Azure DNS zone.
* [Part 3: gRPC ingress (ingress-nginx)](./part_4_ingress_nginx_grpc/README.md) - using ingress controller to route mixed gRPC (HTTP/2) and HTTP.

0 comments on commit bab7e83

Please sign in to comment.