Skip to content

Commit 6852542

Browse files
committed
update readmes
1 parent 559d209 commit 6852542

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

_examples/aks/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ You will need the following environment variables to be set:
99
- `ARM_CLIENT_ID`
1010
- `ARM_CLIENT_SECRET`
1111

12-
See [AWS Provider docs](https://www.terraform.io/docs/providers/aws/index.html#configuration-reference) for more details about these variables and alternatives, like `AWS_PROFILE`.
12+
Ensure that `KUBE_CONFIG_FILE` and `KUBE_CONFIG_FILES` environment variables are NOT set, as they will interfere with the cluster build.
13+
14+
```
15+
unset KUBE_CONFIG_FILE
16+
unset KUBE_CONFIG_FILES
17+
```
1318

1419
To install the AKS cluster using default values, run terraform init and apply from the directory containing this README.
1520

_examples/aks/aks-cluster/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ resource "azurerm_kubernetes_cluster" "test" {
1313
name = "default"
1414
node_count = 1
1515
vm_size = "Standard_DS2_v2"
16-
#vm_size = "Standard_A2_v2"
1716
}
1817

1918
identity {

_examples/eks/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ You will need the following environment variables to be set:
99

1010
See [AWS Provider docs](https://www.terraform.io/docs/providers/aws/index.html#configuration-reference) for more details about these variables and alternatives, like `AWS_PROFILE`.
1111

12+
Ensure that `KUBE_CONFIG_FILE` and `KUBE_CONFIG_FILES` environment variables are NOT set, as they will interfere with the cluster build.
13+
14+
```
15+
unset KUBE_CONFIG_FILE
16+
unset KUBE_CONFIG_FILES
17+
```
18+
1219
To install the EKS cluster using default values, run terraform init and apply from the directory containing this README.
1320

1421
```

_examples/gke/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ GOOGLE_PROJECT=my-gcp-project
1818

1919
See [Google Provider docs](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#full-reference) for more details about these variables.
2020

21+
Ensure that `KUBE_CONFIG_FILE` and `KUBE_CONFIG_FILES` environment variables are NOT set, as they will interfere with the cluster build.
22+
23+
```
24+
unset KUBE_CONFIG_FILE
25+
unset KUBE_CONFIG_FILES
26+
```
27+
2128
To install the GKE cluster using default values, run terraform init and apply from the directory containing this README.
2229

2330
```

0 commit comments

Comments
 (0)