-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
GoogleCloudPlatform/magic-modules
#16131Labels
enhancementforward/reviewIn review; remove label to forwardIn review; remove label to forwardservice/gkehub
Description
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
- Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
- If you are interested in working on this issue or have submitted a pull request, please leave a comment.
- If an issue is assigned to a user, that user is claiming responsibility for the issue.
- Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
Description
Rollout sequencing with custom stages is now available in Public Preview (https://docs.cloud.google.com/kubernetes-engine/docs/concepts/rollout-sequencing-custom-stages/about-rollout-sequencing). Terraform support should be added for the Rollout Sequence resource, for now to the google-beta provider only.
New or Affected Resource(s)
- google_gke_hub_rollout_sequence
Potential Terraform Configuration
resource "google_gke_hub_rollout_sequence" "rollout_sequence" {
provider = google-beta
rollout_sequence_id = "my-rollout-sequence"
display_name = "My Rollout Sequence"
stages {
fleet_projects = ["projects/%{project_id}"]
cluster_selector {
label_selector = "resource.labels.canary=='true'"
}
soak_duration = "30s"
}
stages {
fleet_projects = ["projects/%{project_id}"]
soak_duration = "60s"
}
}References
No response
Metadata
Metadata
Assignees
Labels
enhancementforward/reviewIn review; remove label to forwardIn review; remove label to forwardservice/gkehub