Skip to content

feat: Add getting started with AKS guide #624

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added modules/ROOT/assets/images/managed-k8s/aks/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added modules/ROOT/assets/images/managed-k8s/aks/8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions modules/ROOT/nav1.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
* xref:quickstart.adoc[]
* xref:kubernetes/index.adoc[]
** xref:kubernetes/aks.adoc[]
** xref:kubernetes/gke.adoc[]
** xref:kubernetes/huawei-cloud.adoc[]
** xref:kubernetes/ibm-cloud.adoc[]
Expand Down
50 changes: 50 additions & 0 deletions modules/ROOT/pages/kubernetes/aks.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
= Azure Kubernetes Service (AKS)

Automatic Kubernetes clusters are not supported, as the xref:secret-operator:index.adoc[secret-operator] requires special privileges that are not granted in automatic Kubernetes clusters.

https://azure.microsoft.com/en-us/products/kubernetes-service

. Create Kubernetes cluster
+
Choose an arbitrary name, the default configurations should be fine.
+
image::managed-k8s/aks/1.png[]

. Update NodePool settings
+
It is recommended to check `Enable public IP per node`, so that the Stackable demos work out of the box as they are using NodePorts for maximum portability.
+
image::managed-k8s/aks/2.png[]
+
In case you don't want to spend more money by having dedicated control-plane nodes, remove the `CriticalAddonsOnly` taint with the trash-button to the right, so that this nodes can also run workloads and not only the dataplane.
+
image::managed-k8s/aks/3.png[]

. Enable public access
+
You also need set `Network policy` to `None`, so that your deployed demos are reachable from the internet.
+
image::managed-k8s/aks/4.png[]

. Create Kubernetes cluster
+
Click on `Review + Create` to finish the creation

. Allow incoming traffic
+
Even though the Kubernetes nodes were configured to be public and have no traffic policy, incoming connections will still be blocked by default.
+
image::managed-k8s/aks/8.png[]
You need to go to `Network security group`s and modify the one created for your Kubernetes cluster.
+
image::managed-k8s/aks/5.png[]
Add a new inbound security rule, which allows all incoming connections.
+
image::managed-k8s/aks/6.png[]

. Access Kubernetes
+
Access your Kubernetes by clicking on the `Connect` button and following the instructions.
+
image::managed-k8s/aks/7.png[]

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* https://aws.amazon.com/eks/[Amazon Elastic Kubernetes Service]
* https://azure.microsoft.com/en-gb/products/kubernetes-service[Microsoft Azure Kubernetes Service]
* https://azure.microsoft.com/en-gb/products/kubernetes-service[Azure Kubernetes Service]
* https://cloud.google.com/kubernetes-engine[Google Kubernetes Engine]
* https://cloud.ionos.com/managed/kubernetes[IONOS Managed Kubernetes]
* https://www.rancher.com/products/rancher[SUSE Rancher]
Expand Down