mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-15 14:14:39 +00:00
Merge pull request #51873 from luxas/enable_e2e_multiarch
Automatic merge from submit-queue (batch tested with PRs 51984, 51351, 51873, 51795, 51634) Build test targets for all server platforms **What this PR does / why we need it**: 🤦 I really should have checked this before code freeze, but tbh forgot it in the rush. Also I thought this was the case already... As part of https://github.com/kubernetes/features/issues/288; these binaries should be built for all server platforms indeed. This is just a straightforward add to that list. Can we please get this into v1.8? There is virtually no risk involved here really... **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note Build test targets for all server platforms ``` @ixdy @jdumars @mkumatag
This commit is contained in:
@@ -112,6 +112,10 @@ else
|
|||||||
# Which platforms we should compile test targets for. Not all client platforms need these tests
|
# Which platforms we should compile test targets for. Not all client platforms need these tests
|
||||||
readonly KUBE_TEST_PLATFORMS=(
|
readonly KUBE_TEST_PLATFORMS=(
|
||||||
linux/amd64
|
linux/amd64
|
||||||
|
linux/arm
|
||||||
|
linux/arm64
|
||||||
|
linux/s390x
|
||||||
|
linux/ppc64le
|
||||||
darwin/amd64
|
darwin/amd64
|
||||||
windows/amd64
|
windows/amd64
|
||||||
)
|
)
|
||||||
|
@@ -33,6 +33,10 @@ import (
|
|||||||
"k8s.io/client-go/dynamic"
|
"k8s.io/client-go/dynamic"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
noxuInstanceNum int64 = 9223372036854775807
|
||||||
|
)
|
||||||
|
|
||||||
//NewRandomNameCustomResourceDefinition generates a CRD with random name to avoid name conflict in e2e tests
|
//NewRandomNameCustomResourceDefinition generates a CRD with random name to avoid name conflict in e2e tests
|
||||||
func NewRandomNameCustomResourceDefinition(scope apiextensionsv1beta1.ResourceScope) *apiextensionsv1beta1.CustomResourceDefinition {
|
func NewRandomNameCustomResourceDefinition(scope apiextensionsv1beta1.ResourceScope) *apiextensionsv1beta1.CustomResourceDefinition {
|
||||||
// ensure the singular doesn't end in an s for now
|
// ensure the singular doesn't end in an s for now
|
||||||
@@ -84,7 +88,7 @@ func NewNoxuInstance(namespace, name string) *unstructured.Unstructured {
|
|||||||
"key": "value",
|
"key": "value",
|
||||||
},
|
},
|
||||||
"num": map[string]interface{}{
|
"num": map[string]interface{}{
|
||||||
"num1": 9223372036854775807,
|
"num1": noxuInstanceNum,
|
||||||
"num2": 1000000,
|
"num2": 1000000,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user