From 4b60bbadde7305ad3b26662d06cc6717ae15944a Mon Sep 17 00:00:00 2001 From: Tim Ramlot <42113979+inteon@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:16:46 +0100 Subject: [PATCH] remove files which are not used Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com> --- internal/util/defaults.go | 32 ------------------------- test/integration/internal/util/paths.go | 29 ---------------------- 2 files changed, 61 deletions(-) delete mode 100644 internal/util/defaults.go delete mode 100644 test/integration/internal/util/paths.go diff --git a/internal/util/defaults.go b/internal/util/defaults.go deleted file mode 100644 index d3d0bf6..0000000 --- a/internal/util/defaults.go +++ /dev/null @@ -1,32 +0,0 @@ -/* -Copyright 2021 The cert-manager 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 util - -import ( - "time" -) - -const ( - DefaultLeaderElect = true - DefaultLeaderElectionNamespace = "kube-system" - DefaultLeaderElectionLeaseDuration = 60 * time.Second - DefaultLeaderElectionRenewDeadline = 40 * time.Second - DefaultLeaderElectionRetryPeriod = 15 * time.Second - - DefaultEnableProfiling = false - DefaultProfilerAddr = "localhost:6060" -) diff --git a/test/integration/internal/util/paths.go b/test/integration/internal/util/paths.go deleted file mode 100644 index 886e2b2..0000000 --- a/test/integration/internal/util/paths.go +++ /dev/null @@ -1,29 +0,0 @@ -/* -Copyright 2021 The cert-manager 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 util - -import ( - "os" - "path/filepath" -) - -// GetTestPath returns the path for bazel golang test dependencies -// These dependencies are set in the go_test data attribute in the BUILD.bazel file -// see: https://github.com/bazelbuild/rules_go/blob/master/go/core.rst#go_test -> data attribute -func GetTestPath(path ...string) string { - return filepath.Join(append([]string{os.Getenv("RUNFILES_DIR"), "com_github_jetstack_cert_manager"}, path...)...) -}