-
Notifications
You must be signed in to change notification settings - Fork 9
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
make ScopeTemplate CRs communicate state #20
Merged
everettraven
merged 27 commits into
operator-framework:main
from
everettraven:feature/scopetemplate-state
Oct 11, 2022
Merged
make ScopeTemplate CRs communicate state #20
everettraven
merged 27 commits into
operator-framework:main
from
everettraven:feature/scopetemplate-state
Oct 11, 2022
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
Signed-off-by: Bryce Palmer <[email protected]>
joelanford
reviewed
Sep 7, 2022
Once #21 is approved I will take what I learned from that PR and apply it to this one. |
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
openshift-merge-robot
added
the
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
label
Sep 14, 2022
/hold |
openshift-ci
bot
added
the
do-not-merge/hold
Indicates that a PR should not merge because someone has issued a /hold command.
label
Sep 15, 2022
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
to just return unstructured.Unstructured instead of dealing with applyconfigurations Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
Signed-off-by: Bryce Palmer <[email protected]>
after merging everettraven:chore/refactor-controllers Signed-off-by: Bryce Palmer <[email protected]>
openshift-merge-robot
added
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
and removed
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
labels
Sep 28, 2022
openshift-merge-robot
removed
the
needs-rebase
Indicates a PR cannot be merged because it has merge conflicts with HEAD.
label
Oct 4, 2022
Signed-off-by: Bryce Palmer <[email protected]>
Pull Request Test Coverage Report for Build 3182757679
💛 - Coveralls |
/hold cancel |
openshift-ci
bot
removed
the
do-not-merge/hold
Indicates that a PR should not merge because someone has issued a /hold command.
label
Oct 4, 2022
jmrodri
approved these changes
Oct 10, 2022
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 |
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.
Description of the Change
ScopeTemplateStatus
object to have aConditions
field that is of type[]metav1.Conditions
controllers/scopetemplate_controller.go
to set ametav1.Condition
with typeSucceeded
and updates the status of the condition accordinglycontrollers/scopetemplate_controller_test.go
to:ClusterRole
for each iteration of aScopeTemplate
being created for the testing.ClusterRole
already existed even though theScopeTemplate
was being deleted and recreated. I think this raises the question: ShouldClusterRoles
be deleted if theScopeTemplate
that it is associated with is deleted?Motivation for the Change
Fixes #4