diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-10-16 03:56:47 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-10-16 03:56:47 +0100 |
commit | 01f09076452fe45dac176dc2c4fff1ba81f3b5e0 (patch) | |
tree | 205749ce37d614687dcd3bc65f54a4b7514f85a0 /sys-cluster/kube-controller-manager | |
parent | 4fe36de7142d972c061813e413f66ed4bcfc38d0 (diff) |
gentoo auto-resync : 16:10:2023 - 03:56:47
Diffstat (limited to 'sys-cluster/kube-controller-manager')
-rw-r--r-- | sys-cluster/kube-controller-manager/Manifest | 1 | ||||
-rw-r--r-- | sys-cluster/kube-controller-manager/files/kube-controller-manager-1.28.0-make-gomaxprocs-install-optional.patch | 78 |
2 files changed, 0 insertions, 79 deletions
diff --git a/sys-cluster/kube-controller-manager/Manifest b/sys-cluster/kube-controller-manager/Manifest index 82af0b510ef8..5098feb89d84 100644 --- a/sys-cluster/kube-controller-manager/Manifest +++ b/sys-cluster/kube-controller-manager/Manifest @@ -1,4 +1,3 @@ -AUX kube-controller-manager-1.28.0-make-gomaxprocs-install-optional.patch 2835 BLAKE2B 964759a3af2afced4d5ff2ed59b1e94c2912a85ce560f3dac4e0ea59b1e308ee7b35f6d5435524e6e407d2032a1bd8783fb0b4787dbb22cfa9ace9ff723b1c40 SHA512 88b369bfda14eb03f9957f4b9105a565fa6f821e20b4743941f12f7e5b005cdef4184e0c09d54102b811e08a27f1725b0dc36e29e331f8802b7eaf52db1ce00f AUX kube-controller-manager.confd 142 BLAKE2B d8d35c62bf5c04cc3f440e8b5fb8acab2cf815b25ac4e91354e3fce756a1955e71ec762fab1091074ef4233fff22667aba50417c0d6a896055f8f52b6630bb4e SHA512 b0227a7431018a6742b3931fda0f14b4a040107ecd6821c84593180919ba8a5af9b99b7a507645a5488792f14accd686acc4cc6f70a5084bbdfcdd494021aafc AUX kube-controller-manager.initd 566 BLAKE2B c632b9bc357aead53a2c181af50201b544f214921672e60fffa2d6f77dbeb1912b3d1d138f867d8118cef5ae0843b75d3859ebfc71a4defc2b4cf66426a58101 SHA512 7e3baab9b034e7048ed3cda8d09444c76369874cecc0a747fb5484c482fef464adb5ccc25fcb4481fb4aff68415a60462f6cbee2138810316f0cf822637676c1 AUX kube-controller-manager.logrotated 97 BLAKE2B 00827bf3c3c68c978dc30839318dcdd9ca73e64a38d377168cca75de4764dbd303cdae35fe2c5f6ddded23c7c72976d274e1def66f48a81548e0561411879984 SHA512 e00cd9297d8ac75fcd504a2bfb80d5c5e145e7d475dd15edf9361dc28721afdc069c5b6e79438b75a774e972028841a17e8f7842dcfb3d7835c436a3e503704c diff --git a/sys-cluster/kube-controller-manager/files/kube-controller-manager-1.28.0-make-gomaxprocs-install-optional.patch b/sys-cluster/kube-controller-manager/files/kube-controller-manager-1.28.0-make-gomaxprocs-install-optional.patch deleted file mode 100644 index 1a8935b31c9c..000000000000 --- a/sys-cluster/kube-controller-manager/files/kube-controller-manager-1.28.0-make-gomaxprocs-install-optional.patch +++ /dev/null @@ -1,78 +0,0 @@ -From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001 -From: Jordan Liggitt <liggitt@google.com> -Date: Wed, 16 Aug 2023 09:33:02 -0400 -Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests - ---- - hack/lib/golang.sh | 25 +++++++++++++++---------- - hack/make-rules/test-e2e-node.sh | 1 + - hack/make-rules/test.sh | 1 + - 3 files changed, 17 insertions(+), 10 deletions(-) - -diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh -index 66772f08a81..983ff368e25 100755 ---- a/hack/lib/golang.sh -+++ b/hack/lib/golang.sh -@@ -556,20 +556,25 @@ kube::golang::setup_env() { - - # This seems to matter to some tools - export GO15VENDOREXPERIMENT=1 -+} - -+kube::golang::setup_gomaxprocs() { - # GOMAXPROCS by default does not reflect the number of cpu(s) available - # when running in a container, please see https://github.com/golang/go/issues/33803 -- if ! command -v ncpu >/dev/null 2>&1; then -- # shellcheck disable=SC2164 -- pushd "${KUBE_ROOT}/hack/tools" >/dev/null -- GO111MODULE=on go install ./ncpu -- # shellcheck disable=SC2164 -- popd >/dev/null -+ if [[ -z "${GOMAXPROCS:-}" ]]; then -+ if ! command -v ncpu >/dev/null 2>&1; then -+ # shellcheck disable=SC2164 -+ pushd "${KUBE_ROOT}/hack/tools" >/dev/null -+ GO111MODULE=on go install ./ncpu || echo "Will not automatically set GOMAXPROCS" -+ # shellcheck disable=SC2164 -+ popd >/dev/null -+ fi -+ if command -v ncpu >/dev/null 2>&1; then -+ GOMAXPROCS=$(ncpu) -+ export GOMAXPROCS -+ kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}" -+ fi - fi -- -- GOMAXPROCS=${GOMAXPROCS:-$(ncpu)} -- export GOMAXPROCS -- kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}" - } - - # This will take binaries from $GOPATH/bin and copy them to the appropriate -diff --git a/hack/make-rules/test-e2e-node.sh b/hack/make-rules/test-e2e-node.sh -index 43dde0c740f..49e3e04ac71 100755 ---- a/hack/make-rules/test-e2e-node.sh -+++ b/hack/make-rules/test-e2e-node.sh -@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. - source "${KUBE_ROOT}/hack/lib/init.sh" - - kube::golang::setup_env -+kube::golang::setup_gomaxprocs - - # start the cache mutation detector by default so that cache mutators will be found - KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}" -diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh -index e9074678a8f..4aa72730d83 100755 ---- a/hack/make-rules/test.sh -+++ b/hack/make-rules/test.sh -@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. - source "${KUBE_ROOT}/hack/lib/init.sh" - - kube::golang::setup_env -+kube::golang::setup_gomaxprocs - - # start the cache mutation detector by default so that cache mutators will be found - KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}" --- -2.41.0 - |