Skip to content

Commit

Permalink
Merge pull request #118 from mattfenwick/kind-0.11.0
Browse files Browse the repository at this point in the history
upgrade kind version to 0.11.0
  • Loading branch information
mattfenwick authored May 22, 2021
2 parents 78c613f + 5038f40 commit 254fc7d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kind_cni_from_source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
required: true
cyclonus_args:
required: false
default: "generate include --conflict"
default: "generate include --conflict --job-timeout-seconds 2"

jobs:
test-kind-calico:
Expand Down
2 changes: 1 addition & 1 deletion cmd/worker/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -eou pipefail
set -euo pipefail
set -xv

CLUSTER=${CLUSTER:-netpol-calico}
Expand Down
1 change: 1 addition & 0 deletions hack/kind/antrea/cyclonus-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ spec:
- ./cyclonus
- generate
- --server-protocol=tcp,udp
- --job-timeout-seconds=2
name: cyclonus
imagePullPolicy: IfNotPresent
image: mfenwick100/cyclonus:latest
Expand Down
1 change: 1 addition & 0 deletions hack/kind/calico/cyclonus-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ spec:
- command:
- ./cyclonus
- generate
- --job-timeout-seconds=2
name: cyclonus
imagePullPolicy: IfNotPresent
image: mfenwick100/cyclonus:latest
Expand Down
1 change: 1 addition & 0 deletions hack/kind/cilium/cyclonus-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ spec:
- generate
- --ignore-loopback=true
- --server-protocol=tcp,udp
- --job-timeout-seconds=2
name: cyclonus
imagePullPolicy: IfNotPresent
image: mfenwick100/cyclonus:latest
Expand Down
1 change: 1 addition & 0 deletions hack/kind/ovn-kubernetes/cyclonus-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ spec:
- generate
- --ignore-loopback=true
- --exclude=named-port,multi-peer,upstream-e2e,example
- --job-timeout-seconds=2
name: cyclonus
imagePullPolicy: IfNotPresent
image: mfenwick100/cyclonus:latest
Expand Down
2 changes: 1 addition & 1 deletion hack/kind/ovn-kubernetes/setup-kind.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

set -xv
set -eou pipefail
set -euo pipefail

CLUSTER=${CLUSTER:-"ovn"}
OVN_DIR="ovn-kubernetes-repo"
Expand Down
6 changes: 3 additions & 3 deletions hack/kind/run-cyclonus.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env bash

set -xv
set -eou pipefail
set -euo pipefail

KIND_VERSION=${KIND_VERSION:-v0.10.0}
KIND_VERSION=${KIND_VERSION:-v0.11.0}
CNI=${CNI:-calico}
CLUSTER_NAME="netpol-$CNI"
RUN_FROM_SOURCE=${RUN_FROM_SOURCE:-true}
FROM_SOURCE_ARGS=${FROM_SOURCE_ARGS:-"generate --include conflict"}
FROM_SOURCE_ARGS=${FROM_SOURCE_ARGS:-"generate --include conflict --job-timeout-seconds 2"}

# install kind if not found
if ! command -v kind &> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion hack/sonobuoy/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

set -xv
set -eou pipefail
set -euo pipefail


IMAGE=mfenwick100/sonobuoy-cyclonus:latest
Expand Down
2 changes: 1 addition & 1 deletion hack/sonobuoy/run-sonobuoy-plugin.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh

set -xv
set -eou pipefail
set -euo pipefail

CYCLONUS_ARGS=$@
RESULTS_DIR="${RESULTS_DIR:-/tmp/results}"
Expand Down

0 comments on commit 254fc7d

Please sign in to comment.