Skip to content

Commit

Permalink
Merge pull request #2148 from cezarygerard/master
Browse files Browse the repository at this point in the history
set arm64 tolerations in ingress e2e tests
  • Loading branch information
k8s-ci-robot authored May 25, 2023
2 parents 73b2602 + 9594d07 commit acb90ac
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkg/e2e/fixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,14 @@ func ensureEchoDeployment(s *Sandbox, name string, numReplicas int32, modify fun
},
},
},
Tolerations: []v1.Toleration{
{
Key: "kubernetes.io/arch",
Operator: "Equal",
Value: "arm64",
Effect: "NoSchedule",
},
},
},
}
deployment := &apps.Deployment{
Expand Down

0 comments on commit acb90ac

Please sign in to comment.