Skip to content

Commit

Permalink
add arm64 support for connectivity checkers
Browse files Browse the repository at this point in the history
This was merged in cilium/cilium cilium/cilium#15894

Signed-off-by: André Martins <andre@cilium.io>
  • Loading branch information
aanm committed Apr 29, 2021
1 parent a9ed772 commit b1d9f63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions connectivity/check/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ func (k *K8sConnectivityCheck) deploy(ctx context.Context) error {
Name: echoSameNodeDeploymentName,
Kind: kindEchoName,
Port: 8080,
Image: "quay.io/cilium/json-mock:1.2",
Image: "ConnectivityCheckJSONMockImage",
Labels: map[string]string{"other": "echo"},
Affinity: &corev1.Affinity{
PodAffinity: &corev1.PodAffinity{
Expand Down Expand Up @@ -1427,7 +1427,7 @@ func (k *K8sConnectivityCheck) deploy(ctx context.Context) error {
Name: ClientDeploymentName,
Kind: kindClientName,
Port: 8080,
Image: "quay.io/cilium/alpine-curl:1.1",
Image: "ConnectivityCheckAlpineCurlImage",
Command: []string{"/bin/ash", "-c", "sleep 10000000"},
})
_, err = k.clients.src.CreateDeployment(ctx, k.params.TestNamespace, clientDeployment, metav1.CreateOptions{})
Expand All @@ -1444,7 +1444,7 @@ func (k *K8sConnectivityCheck) deploy(ctx context.Context) error {
Name: Client2DeploymentName,
Kind: kindClientName,
Port: 8080,
Image: "quay.io/cilium/alpine-curl:1.1",
Image: "ConnectivityCheckAlpineCurlImage",
Command: []string{"/bin/ash", "-c", "sleep 10000000"},
Labels: map[string]string{"other": "client"},
})
Expand Down Expand Up @@ -1478,7 +1478,7 @@ func (k *K8sConnectivityCheck) deploy(ctx context.Context) error {
Name: echoOtherNodeDeploymentName,
Kind: kindEchoName,
Port: 8080,
Image: "quay.io/cilium/json-mock:1.2",
Image: "ConnectivityCheckJSONMockImage",
Affinity: &corev1.Affinity{
PodAntiAffinity: &corev1.PodAntiAffinity{
RequiredDuringSchedulingIgnoredDuringExecution: []corev1.PodAffinityTerm{
Expand Down
3 changes: 3 additions & 0 deletions defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ const (

ConnectivityCheckNamespace = "cilium-test"

ConnectivityCheckAlpineCurlImage = "quay.io/cilium/alpine-curl:v1.3.0@sha256:1d928912e5d9dc9994b038b5df7434790c4bb9bd64f60570d78c1dee13befc76"
ConnectivityCheckJSONMockImage = "quay.io/cilium/json-mock:v1.3.0@sha256:2729064827fa9dbfface8d3df424feb6c792a0ba07117b844349635c93c06d2b"

ConfigMapName = "cilium-config"
Version = "v1.9.6"

Expand Down

0 comments on commit b1d9f63

Please sign in to comment.