Skip to content

Commit

Permalink
(up)
Browse files Browse the repository at this point in the history
  • Loading branch information
matiagimenez committed May 26, 2024
1 parent 0ec5c6a commit 6084f02
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow_tp4_ej3_kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Google Cloud kubectl cluster metadata
run: |
REGION="us-central1-a"
REGION="us-east1-b"
gcloud info
gcloud components list
gcloud container clusters get-credentials primary --region=${REGION}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow_tp4_ej3_workers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:

- name: Wait for Kubernetes cluster to be ready
run: |
REGION="us-central1-a"
REGION="us-east1-b"
until [ "$(gcloud container clusters describe primary --region=${REGION} --format='value(status)')" = "RUNNING" ]; do
echo "Waiting for Kubernetes cluster to be ready..."
sleep 10
done
- name: Google Cloud kubectl cluster metadata
run: |
REGION="us-central1-a"
REGION="us-east1-b"
gcloud info
gcloud components list
gcloud container clusters get-credentials primary --region=${REGION}
Expand Down
4 changes: 2 additions & 2 deletions TP4/ej3/kubernetes/terraform/01-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ variable "project" {

variable "region" {
type = string
default = "us-central1" # us-east1
default = "us-east1" # us-central1
}

variable "zone" {
type = string
default = "us-central1-a" # us-east1-b
default = "us-east1-b" # us-central1-a
}

variable "bucket_name" {
Expand Down

0 comments on commit 6084f02

Please sign in to comment.