-
Notifications
You must be signed in to change notification settings - Fork 18
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
Improve Templates deletion validation #355
Open
eromanova
wants to merge
1
commit into
Mirantis:main
Choose a base branch
from
eromanova:template-validation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eromanova
force-pushed
the
template-validation
branch
2 times, most recently
from
September 23, 2024 10:31
176cb64
to
f27b9ce
Compare
eromanova
force-pushed
the
template-validation
branch
4 times, most recently
from
September 26, 2024 13:45
8fa5584
to
5d46cee
Compare
Kshatrix
requested changes
Sep 27, 2024
eromanova
force-pushed
the
template-validation
branch
from
October 16, 2024 16:35
5d46cee
to
f01b819
Compare
eromanova
force-pushed
the
template-validation
branch
from
October 18, 2024 12:10
f01b819
to
fb3d9e0
Compare
eromanova
changed the title
Allow Templates deletion by the controller only
Improve Templates deletion validation
Oct 18, 2024
eromanova
force-pushed
the
template-validation
branch
from
October 21, 2024 09:34
fb3d9e0
to
7dbda57
Compare
Kshatrix
requested changes
Oct 21, 2024
eromanova
force-pushed
the
template-validation
branch
from
October 21, 2024 18:54
7dbda57
to
03becc2
Compare
eromanova
force-pushed
the
template-validation
branch
from
October 22, 2024 12:27
03becc2
to
83d4900
Compare
eromanova
force-pushed
the
template-validation
branch
2 times, most recently
from
October 25, 2024 11:16
ee7c734
to
995c17f
Compare
eromanova
force-pushed
the
template-validation
branch
from
October 28, 2024 09:26
995c17f
to
d24f391
Compare
eromanova
force-pushed
the
template-validation
branch
4 times, most recently
from
November 4, 2024 10:50
f210ccb
to
aa3e359
Compare
eromanova
force-pushed
the
template-validation
branch
2 times, most recently
from
November 12, 2024 08:54
5c08a8c
to
220b985
Compare
eromanova
force-pushed
the
template-validation
branch
from
November 13, 2024 10:28
220b985
to
30564da
Compare
The following rules are validated: 1. ClusterTemplate or ServiceTemplate can't be removed if it is in use by ManagedCluster or TemplateChain 2. ClusterTemplate or ServiceTemplate can't be removed if the template is managed by the TemplateManagement 3. ProviderTemplate can't be removed if it's a core provider or enabled in Management spec.providers
eromanova
force-pushed
the
template-validation
branch
from
November 21, 2024 12:23
30564da
to
dca242a
Compare
eromanova
commented
Nov 21, 2024
@@ -231,9 +231,6 @@ var _ = Describe("Template Chain Controller", func() { | |||
|
|||
Eventually(k8sClient.Get, 1*time.Minute, 5*time.Second).WithArguments(ctx, chain, clusterTemplateChainResource).Should(HaveOccurred()) | |||
} | |||
for _, template := range []*hmcmirantiscomv1alpha1.ClusterTemplate{ctTemplates["test"], ctTemplates["ct0"], ctTemplates["ct2"]} { |
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.
Removing the templates' cleanup since the webhook now denies these requests. Templates have owner reference set and should be automatically deleted by the garbage collector. The owner reference existence is checked below.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The following template deletion rules are validated:
ClusterTemplate
orServiceTemplate
can't be removed if it is in use byManagedCluster
ClusterTemplate
orServiceTemplate
can't be removed if the template is managed byTemplateManagement
ProviderTemplate
can't be removed if it's a core provider or enabled in Managementspec.providers
Closes #329