Skip to content
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

Merged
merged 4 commits into from
Mar 24, 2025

Conversation

mpryc
Copy link
Collaborator

@mpryc mpryc commented Mar 20, 2025

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:

$ make update-velero-manifests

requires openshift/oadp-operator#1678

Copy link

openshift-ci bot commented Mar 20, 2025

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@kaovilai kaovilai self-assigned this Mar 20, 2025
@kaovilai
Copy link
Member

🛏️ rest well sir

@mpryc mpryc force-pushed the oadp-manifest-updates branch from aadde8c to 46d1783 Compare March 20, 2025 21:32
@kaovilai kaovilai force-pushed the oadp-manifest-updates branch from 46d1783 to f813514 Compare March 21, 2025 01:27
@kaovilai kaovilai closed this Mar 21, 2025
@kaovilai kaovilai reopened this Mar 21, 2025
@kaovilai
Copy link
Member

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

@kaovilai
Copy link
Member

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}

@kaovilai kaovilai marked this pull request as ready for review March 21, 2025 16:03
@openshift-ci openshift-ci bot requested review from mrnold and sseago March 21, 2025 16:03
@kaovilai kaovilai force-pushed the oadp-manifest-updates branch 3 times, most recently from 69174b4 to 848d624 Compare March 21, 2025 17:53
Comment on lines 277 to 279
if r.Name == "" {
r.Name = "nonadmingarbagecollector"
}
Copy link
Member

@kaovilai kaovilai Mar 21, 2025

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>").

@kaovilai kaovilai marked this pull request as draft March 21, 2025 18:00
@kaovilai
Copy link
Member

draft until tests are fixed

@kaovilai kaovilai force-pushed the oadp-manifest-updates branch from 848d624 to ee28340 Compare March 21, 2025 18:05
@kaovilai kaovilai force-pushed the oadp-manifest-updates branch 2 times, most recently from 64490dd to c614e49 Compare March 21, 2025 18:13
@kaovilai kaovilai force-pushed the oadp-manifest-updates branch from c614e49 to 071d9a7 Compare March 21, 2025 18:21
@kaovilai kaovilai marked this pull request as ready for review March 21, 2025 18:25
Comment on lines -138 to +137
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.
Copy link
Member

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..

kubernetes-sigs/controller-tools#728 :D

Comment on lines 198 to 201
time.Sleep(1 * time.Second)
<-ctx.Done()
gomega.Expect(ctx.Err()).To(gomega.Equal(context.Canceled))
Copy link
Member

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
},
Copy link
Contributor

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

Copy link
Member

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.

Copy link
Member

@kaovilai kaovilai Mar 21, 2025

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

@kaovilai kaovilai force-pushed the oadp-manifest-updates branch from 08ceb05 to e7d4514 Compare March 21, 2025 19:40
Copy link

openshift-ci bot commented Mar 21, 2025

[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:
  • OWNERS [mateusoliveira43,mpryc]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link
Collaborator Author

@mpryc mpryc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

Thanks @kaovilai

Copy link

openshift-ci bot commented Mar 24, 2025

@mpryc: you cannot LGTM your own PR.

In response to this:

/lgtm

Thanks @kaovilai

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.

@mpryc mpryc added the lgtm label Mar 24, 2025
@mateusoliveira43
Copy link
Contributor

/override "security/snyk ( Hybrid Platforms - OpenShift API for Data Protection)"

Copy link

openshift-ci bot commented Mar 24, 2025

@mateusoliveira43: Overrode contexts on behalf of mateusoliveira43: security/snyk ( Hybrid Platforms - OpenShift API for Data Protection)

In response to this:

/override "security/snyk ( Hybrid Platforms - OpenShift API for Data Protection)"

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.

@openshift-merge-bot openshift-merge-bot bot merged commit 741ae3b into migtools:master Mar 24, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants