You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _examples/aks/README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,12 @@ You will need the following environment variables to be set:
9
9
-`ARM_CLIENT_ID`
10
10
-`ARM_CLIENT_SECRET`
11
11
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
+
```
13
18
14
19
To install the AKS cluster using default values, run terraform init and apply from the directory containing this README.
Copy file name to clipboardExpand all lines: _examples/eks/README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,13 @@ You will need the following environment variables to be set:
9
9
10
10
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`.
11
11
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
+
12
19
To install the EKS cluster using default values, run terraform init and apply from the directory containing this README.
Copy file name to clipboardExpand all lines: _examples/gke/README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,13 @@ GOOGLE_PROJECT=my-gcp-project
18
18
19
19
See [Google Provider docs](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#full-reference) for more details about these variables.
20
20
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
+
21
28
To install the GKE cluster using default values, run terraform init and apply from the directory containing this README.
0 commit comments