-
Notifications
You must be signed in to change notification settings - Fork 89
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
Auto deploy job needs to use the new kfctl syntax. #495
Conversation
26cefc2
to
bc78726
Compare
py/kubeflow/testing/cleanup_ci.py
Outdated
# See https://github.com/kubeflow/testing/issues/444 | ||
# We are switching to unique names for auto deployments | ||
# So this matches the new ones. | ||
AUTO_DEPLOY_PATTERN = re.compile("kf-vmaster-(?!n\d\d)") |
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.
this only matches auto-deployment from master? how about current stable release?
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.
This is deliberate. The existing auto deployed clusters aren't cleaned up by cleanup_ci.py. Instead the auto deployment script recycles clusters as it cycles through names.
Related to kubeflow#471 * Don't set name in the spec because we want to infer it form directory. * Create a new script to deploy with a unique name * Related to: kubeflow#444 * Update cleanup script to clean up new auto-deployed clusters
fbeac4f
to
5ce9084
Compare
…sters because otherwise we hit lets-encrypt rate limiting.
I verified this worked. |
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
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jlewi 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 |
Auto deploy job needs to use the new kfctl syntax; also use unique names
Related to #471
Don't set name in the spec because we want to infer it form directory.
Create a new script to deploy with a unique name
Related to: Auto-deployments of Kubeflow should use unique names and not recycle names - Upgrade to v0.7 #444
Update cleanup script to clean up new auto-deployed clusters
This change is