-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Addons: Only template .tmpl
files
#18785
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.4s 50.8s 53.9s 53.3s 53.4s Times for minikube ingress: 28.0s 28.6s 30.1s 27.6s 28.0s docker driver with docker runtime
Times for minikube start: 21.9s 24.6s 20.9s 24.0s 20.8s Times for minikube (PR 18785) ingress: 21.8s 21.8s 21.8s 21.3s 22.8s docker driver with containerd runtime
Times for minikube start: 23.5s 20.9s 22.6s 22.1s 24.0s Times for minikube ingress: 31.8s 31.8s 31.3s 31.3s 31.8s |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, spowelljr 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 |
Closes #18784
The full explanation for this can be found in #18784, but the short is that we're templating all addon files on load. This hasn't caused an issue until now, but when trying to update the kubeflow addon they added templating that acts as version validation on runtime, but we're templating on load, resulting in:
Since we strictly add
.tmpl
to the filename of files that need templating, check for that suffix to decide if the file needs to be templated or not.