-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27b0a2d
commit d470aa7
Showing
9 changed files
with
41 additions
and
431 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# https://learn.microsoft.com/en-us/azure/aks/ingress-basic?tabs=azure-cli | ||
|
||
# Add the Jetstack Helm repository | ||
helm repo add jetstack https://charts.jetstack.io | ||
|
||
# Update your local Helm chart repository cache | ||
helm repo update | ||
|
||
# Add the ingress-nginx repository | ||
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx | ||
|
||
helm install ingress-nginx ingress-nginx/ingress-nginx \ | ||
--create-namespace \ | ||
--namespace ingress-basic \ | ||
--set controller.service.annotations."service\.beta\.kubernetes\.io/azure-load-balancer-health-probe-request-path"=/healthz |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
# https://learn.microsoft.com/en-us/azure/aks/ingress-tls?tabs=azure-cli | ||
|
||
# Add the Jetstack Helm repository | ||
helm repo add jetstack https://charts.jetstack.io | ||
|
||
# Update your local Helm chart repository cache | ||
helm repo update | ||
|
||
kubectl label namespace ingress-basic cert-manager.io/disable-validation=true | ||
helm install cert-manager jetstack/cert-manager \ | ||
--namespace ingress-basic \ | ||
--set installCRDs=true \ | ||
--set nodeSelector."kubernetes\.io/os"=linux |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.