Skip to content

Commit

Permalink
update aks material
Browse files Browse the repository at this point in the history
  • Loading branch information
darkn3rd committed Jun 18, 2021
1 parent 7a34358 commit 7bdfac8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.kitchen
.vagrant
.DS_Store
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ These are code related to tutorials created.
* General
* Helmfile (`helmfile`) - https://joachim8675309.medium.com/devops-tools-introducing-helmfile-f7c0197f3aea
* Helm3 + Helm2 on macOS (`helm`) - https://joachim8675309.medium.com/install-helm3-helm2-on-macos-d65f61509799
* AKS
* Basic AKS (`az`) - https://joachim8675309.medium.com/azure-kubernetes-service-b89cc52b7f02
* EKS
* VPC + EKS (`eksctl`) - https://joachim8675309.medium.com/building-eks-with-eksctl-799eeb3b0efd
* VPC for future EKS (`terraform`) - https://joachim8675309.medium.com/create-an-amazon-vpc-for-eks-597481514bcc
Expand Down
9 changes: 8 additions & 1 deletion azure/aks/aks_provision_az/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# AKS Provision with `az` command

## Published Blogs

* https://joachim8675309.medium.com/azure-kubernetes-service-b89cc52b7f02


## Instructions


```bash
Expand All @@ -8,5 +16,4 @@ export AZ_LOCATION=westus2
EOF

export KUBECONFIG=~/.kube/$AZ_CLUSTER_NAME

```
2 changes: 1 addition & 1 deletion azure/aks/aks_provision_az/create_cluster.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -x
# [[ "$DEBUG" == 1 ]] && set -x
## Check for gcloud command
command -v az > /dev/null || \
{ echo "'az' command not not found" 1>&2; exit 1; }
Expand Down

0 comments on commit 7bdfac8

Please sign in to comment.