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

Fix tests for multi-arch clusters #16045

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/e2e/kubetest2-kops/deployer/build.go
Original file line number Diff line number Diff line change
@@ -73,6 +73,8 @@ func (d *deployer) verifyBuildFlags() error {
if d.BuildOptions.TargetBuildArch != "" {
if !strings.HasPrefix(d.BuildOptions.TargetBuildArch, "linux/") {
return errors.New("--target-build-arch supports linux/amd64 and linux/arm64 only")
} else if d.BuildOptions.BuildKubernetes {
d.BuildOptions.TargetBuildArch = "linux/amd64"
}
}

5 changes: 4 additions & 1 deletion tests/e2e/kubetest2-kops/deployer/common.go
Original file line number Diff line number Diff line change
@@ -181,10 +181,13 @@ func (d *deployer) env() []string {
fmt.Sprintf("HOME=%v", os.Getenv("HOME")),
fmt.Sprintf("KOPS_STATE_STORE=%v", d.stateStore()),
fmt.Sprintf("KOPS_FEATURE_FLAGS=%v", d.featureFlags()),
fmt.Sprintf("KOPS_ARCH=%s", strings.Trim(d.BuildOptions.TargetBuildArch, "linux/")),
"KOPS_RUN_TOO_NEW_VERSION=1",
}...)

if d.BuildOptions.TargetBuildArch != "" {
vars = append(vars, fmt.Sprintf("KOPS_ARCH=%s", strings.Trim(d.BuildOptions.TargetBuildArch, "linux/")))
}

// Pass-through some env vars if set (on all clouds)
for _, k := range []string{"KOPS_ARCH"} {
if v := os.Getenv(k); v != "" {
1 change: 0 additions & 1 deletion tests/e2e/kubetest2-kops/deployer/deployer.go
Original file line number Diff line number Diff line change
@@ -113,7 +113,6 @@ func New(opts types.Options) (types.Deployer, *pflag.FlagSet) {
d := &deployer{
commonOptions: opts,
BuildOptions: &builder.BuildOptions{
TargetBuildArch: "linux/amd64",
BuildKubernetes: false,
},
boskosHeartbeatClose: make(chan struct{}),