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: applications/jupyter/README.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,8 @@ This module deploys the following resources, once per user:
20
20
- iap.googleapis.com (required when using authentication with Identity Aware Proxy)
21
21
22
22
2. A functional GKE cluster.
23
-
- To create a new standard or autopilot cluster, follow the instructions under `infrastructure/README.md`
23
+
- To create a new standard or autopilot cluster, follow the instructions in [`infrastructure/README.md`](https://github.com/GoogleCloudPlatform/ai-on-gke/blob/main/infrastructure/README.md)
24
+
- Alternatively, you can set the `create_cluster` variable to true in `workloads.tfvars` to provision a new GKE cluster. This will default to creating a GKE Autopilot cluster; if you want to provision a standard cluster you must also set `autopilot_cluster` to false.
24
25
25
26
3. This module is configured to use Identity Aware Proxy (IAP) as default authentication method for JupyterHub. It expects the brand & the OAuth consent configured in your org. You can check the details here: [OAuth consent screen](https://console.cloud.google.com/apis/credentials/consent)
1. Extract the randomly generated password for JupyterHub login
117
118
118
119
```
119
-
terraform output password
120
+
terraform output jupyterhub_password
120
121
```
121
122
122
123
2. Setup port forwarding for the frontend: `kubectl port-forward service/proxy-public -n <namespace> 8081:80 &`, and open `localhost:8081` in a browser.
@@ -192,4 +193,4 @@ This module uses `<ip>.nip.io` as the domain name with a global static ipv4 addr
192
193
193
194
## Additional Information
194
195
195
-
For more information about JupyterHub profiles and the preset profiles visit [here](https://github.com/GoogleCloudPlatform/ai-on-gke/blob/main/applications/jupyter/profiles.md)
196
+
For more information about JupyterHub profiles and the preset profiles visit [here](https://github.com/GoogleCloudPlatform/ai-on-gke/blob/main/applications/jupyter/profiles.md)
Copy file name to clipboardExpand all lines: infrastructure/README.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Setup Infra
2
2
3
-
Platform module (to be renamed to Infra), creates the GKE cluster & other related resources for the AI applications / workloads to be deployed on them.
3
+
The infrastructure module creates the GKE cluster and other related resources for the AI applications / workloads to be deployed on them.
4
4
5
5
1) Update the ```platform.tfvars``` file with the required configuration. Kindly refer to ```tfvars_examples``` for sample configuration.
6
6
@@ -21,12 +21,13 @@ Following service APIs are enabled,
21
21
22
22
if not already enabled, use the following command:
Default config in ```platform.tfvars``` creates a private GKE cluster with internal endpoints & cluster is added to project-scoped Anthos fleet.
30
+
The default configuration in ```platform.tfvars``` creates a private GKE cluster with internal endpoints and adds the cluster to a project-scoped Anthos fleet.
30
31
For admin access to cluster, Anthos Connect Gateway is used.
0 commit comments