-
Notifications
You must be signed in to change notification settings - Fork 126
Conversation
@@ -911,7 +911,7 @@ variable "git_sync_wait" { | |||
|
|||
variable "helm_chart_version" { | |||
description = "The version of the Helm chart to use" | |||
default = "2.1.0" | |||
default = "2.2.0-rc1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently using this version until 2.2.0 is released.
|
||
it "has the expected status" do | ||
expect(pod.status.phase).to eq 'Running' | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests will ensure the minimum Forseti pods are running.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These LGTM.
/gcbrun |
…480) * Updating the way Forseti Server Configuration is retrieved from GCS Moved away from `google_storage_object_signed_url` as it requires a local json keyfile and I am deploying using service account impersonation. hashicorp/terraform-provider-google#3558 * Pinning version of helm provider to ~> v0.10 * Passing helm chart version through the on_gke_end_to_end example to the on_gke module Co-authored-by: Gregg Kowalski <[email protected]>
…s.tf file for on-gke-end-to-end, update helm chart to the 2.2 RC.
…e workload identity race condition.
@@ -69,7 +69,7 @@ locals { | |||
"storage-api.googleapis.com", | |||
"groupssettings.googleapis.com", | |||
] | |||
workload_identity = "${var.project_id}.svc.id.goog" | |||
workload_identity_namespace = var.workload_identity_namespace == null ? "${var.project_id}.svc.id.goog" : var.workload_identity_namespace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend not making this conditional: input variable or bust.
Due to this bug with Helm, these tests will not pass and will need to upgrade to Helm 3 to get the fix. Related to #548 |
Resolves #515