-
Notifications
You must be signed in to change notification settings - Fork 7
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
OADP Non Admin velero manifest updates. #255
OADP Non Admin velero manifest updates. #255
Conversation
Skipping CI for Draft Pull Request. |
🛏️ rest well sir |
aadde8c
to
46d1783
Compare
Signed-off-by: Michal Pryc <[email protected]>
46d1783
to
f813514
Compare
failing on dupe name.. checking if we are resetting somewhere.. easiest hackaround is to use different name each test case in internal/controller/nonadminbackupstoragelocation_controller_test.go This is the code in controller-runtime/pkg/controller/name.go containing checkName which is called each time SetupWIthManager is run /*
Copyright 2020 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package controller
import (
"fmt"
"sync"
"k8s.io/apimachinery/pkg/util/sets"
)
var nameLock sync.Mutex
var usedNames sets.Set[string]
func checkName(name string) error {
nameLock.Lock()
defer nameLock.Unlock()
if usedNames == nil {
usedNames = sets.Set[string]{}
}
if usedNames.Has(name) {
return fmt.Errorf("controller with name %s already exists. Controller names must be unique to avoid multiple controllers reporting to the same metric", name)
}
usedNames.Insert(name)
return nil
} We either use different name for each test or we skipvalidation |
it uses Sets and the code only use inserts. So I think setting custom name is cleaner than the alternative, which is to have an if check for test, then adding controller.Options{SkipName} |
69174b4
to
848d624
Compare
if r.Name == "" { | ||
r.Name = "nonadmingarbagecollector" | ||
} |
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 only needed if a controller has no For(&nacv1alpha1.TYPE{})
where name can be gathered from GroupVersionKind ie. prior default behavior... ie. where you had to Named("<name>").
draft until tests are fixed |
848d624
to
ee28340
Compare
64490dd
to
c614e49
Compare
Signed-off-by: Tiger Kaovilai <[email protected]>
c614e49
to
071d9a7
Compare
description: "Condition contains details for one aspect of the current | ||
state of this API Resource.\n---\nThis struct is intended for | ||
direct use as an array at the field path .status.conditions. For | ||
example,\n\n\n\ttype FooStatus struct{\n\t // Represents the | ||
observations of a foo's current state.\n\t // Known .status.conditions.type | ||
are: \"Available\", \"Progressing\", and \"Degraded\"\n\t // | ||
+patchMergeKey=type\n\t // +patchStrategy=merge\n\t // +listType=map\n\t | ||
\ // +listMapKey=type\n\t Conditions []metav1.Condition `json:\"conditions,omitempty\" | ||
patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"`\n\n\n\t | ||
\ // other fields\n\t}" | ||
description: Condition contains details for one aspect of the current | ||
state of this API Resource. |
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.
In case you were wondering why there is more deletions than add..
time.Sleep(1 * time.Second) | ||
<-ctx.Done() | ||
gomega.Expect(ctx.Err()).To(gomega.Equal(context.Canceled)) |
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.
From initial debugging, I had made this change thought something took longer.. but I think its ok to keep. <-ctx.Done() seemed more accurate than hardcoded waits.
@@ -155,12 +156,13 @@ var _ = ginkgo.Describe("Test full reconcile loop of GarbageCollector Controller | |||
}, |
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 do not like these changes
we are changing controllers code, but we could fix these error by just adding
Controller: config.Controller{
SkipNameValidation: ptr.To(true),
},
in places where NewManager
is called in tests code, like here, changing just controllers tests code
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.
cool, I did find that option but didn't see where to set it. will get those in.
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.
The thought behind name change was, the other place to set skipnamevalidation is in the controller code also..
Your suggestion will allow change to stay only in _test.go
Signed-off-by: Tiger Kaovilai <[email protected]>
Signed-off-by: Tiger Kaovilai <[email protected]>
08ceb05
to
e7d4514
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mateusoliveira43, mpryc 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 |
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
Thanks @kaovilai
@mpryc: you cannot LGTM your own PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/override "security/snyk ( Hybrid Platforms - OpenShift API for Data Protection)" |
@mateusoliveira43: Overrode contexts on behalf of mateusoliveira43: security/snyk ( Hybrid Platforms - OpenShift API for Data Protection) In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Why the changes were made
Update the oadp manifests on the non-admin part of it.
How to test the changes made
Generated by using:
requires openshift/oadp-operator#1678