Skip to content

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
umeshkumhar committed Mar 8, 2024
1 parent e051edd commit bcb2733
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
project_id = "<gcp-prj-id>"

## this is required for terraform to connect to GKE master and deploy workloads
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "<cluster-name>"
cluster_location = "us-central1"
cluster_membership_id = "" # required only for private cluster, default: cluster_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
project_id = "<gcp-prj-id>"

## this is required for terraform to connect to GKE master and deploy workloads
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "<cluster-name>"
cluster_location = "us-central1"
cluster_membership_id = "" # required only for private cluster, default: cluster_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
project_id = "<gcp-prj-id>"

## this is required for terraform to connect to GKE master and deploy workloads
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "<cluster-name>"
cluster_location = "us-central1"
cluster_membership_id = "" # required only for private cluster, default: cluster_name
Expand Down
1 change: 1 addition & 0 deletions applications/jupyter/workloads-without-iap.example.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
project_id = "<gcp-prj-id>"

## this is required for terraform to connect to GKE master and deploy workloads
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "<cluster-name>"
cluster_location = "us-central1"
cluster_membership_id = "" # required only for private clusters, default: cluster_name
Expand Down
1 change: 1 addition & 0 deletions applications/jupyter/workloads.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
project_id = "<your project ID>"

## this is required for terraform to connect to GKE master and deploy workloads
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "ml-cluster"
cluster_location = "us-central1"
cluster_membership_id = "" # required for private cluster, defaults to `cluster_name`
Expand Down
7 changes: 3 additions & 4 deletions applications/ray/workloads.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,19 @@
project_id = "<your project ID>"

## this is required for terraform to connect to GKE master and deploy workloads
cluster_name = "<your project ID>"
create_cluster = false # this flag will create a new standard public gke cluster in default network
cluster_name = "<cluster name>"
cluster_location = "us-central1"

#######################################################
#### APPLICATIONS
#######################################################

## GKE environment variables

## GKE environment variables
ray_namespace = "ml"

# Creates a google service account & k8s service account & configures workload identity with appropriate permissions.
# Set to false & update the variable `gcp_service_account` to use an existing IAM service account.
# Set to false & update the variable `workload_identity_service_account` to use an existing IAM service account.
create_service_account = true
workload_identity_service_account = "ray-service-account"

Expand Down

0 comments on commit bcb2733

Please sign in to comment.