-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🏃 [ci-conformance] Fix kustomize template to better handle envsubst #292
🏃 [ci-conformance] Fix kustomize template to better handle envsubst #292
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: detiber The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/assign @ncdc |
/test pull-cluster-api-provider-gcp-make-conformance |
1 similar comment
/test pull-cluster-api-provider-gcp-make-conformance |
/test pull-cluster-api-provider-gcp-make-conformance |
3 similar comments
/test pull-cluster-api-provider-gcp-make-conformance |
/test pull-cluster-api-provider-gcp-make-conformance |
/test pull-cluster-api-provider-gcp-make-conformance |
/test pull-cluster-api-provider-gcp-make-conformance |
1 similar comment
/test pull-cluster-api-provider-gcp-make-conformance |
- Increase timeout for getting nodes - Fix GCPMachine watch in GCPCluster controller - Fix template errors - Remove cloud-init bootstrapping in favor of building an image with the ci artifacts
12e0aa0
to
804ab0d
Compare
/assign @gab-satchi |
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 did a quick pass-through and in general this LGTM, I'll leave the final word to @gab-satchi
@@ -50,7 +50,7 @@ func (r *GCPClusterReconciler) SetupWithManager(mgr ctrl.Manager, options contro | |||
WithOptions(options). | |||
For(&infrav1.GCPCluster{}). | |||
Watches( | |||
&source.Kind{Type: &infrav1.GCPCluster{}}, | |||
&source.Kind{Type: &infrav1.GCPMachine{}}, |
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 guess this handler was just failing until now :p
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.
Correct, I only noticed when I switched to testing and troubleshooting locally.
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.
lgtm
/lgtm |
What this PR does / why we need it:
Updates the script used during conformance testing against upstream k8s to remove bash variables other than the ones we replace with the call to envsubst, since envsubst is replacing them with empty strings currently.