-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(.github): enable self hosted runners for AMD64 E2E tasks (backport…
… of #10945) (#12277) Automatic cherry-pick of #10945 for branch release-2.8 Generated by [action](https://github.com/kumahq/kuma/actions/runs/12353055555) cherry-picked commit 126029d⚠️ ⚠️ ⚠️ Conflicts happened when cherry-picking!⚠️ ⚠️ ⚠️ ``` On branch release-2.8 Your branch is up to date with 'origin/release-2.8'. You are currently cherry-picking commit 126029d. (fix conflicts and run "git cherry-pick --continue") (use "git cherry-pick --skip" to skip this patch) (use "git cherry-pick --abort" to cancel the cherry-pick operation) Changes to be committed: modified: .github/workflows/build-test-distribute.yaml modified: mk/kind.mk modified: test/kind/cluster-ipv6-kuma-1.yaml modified: test/kind/cluster-ipv6-kuma-2.yaml modified: test/kind/cluster-ipv6-kuma.yaml modified: test/kind/cluster-kuma-1.yaml modified: test/kind/cluster-kuma-2.yaml modified: test/kind/cluster-kuma.yaml Unmerged paths: (use "git add <file>..." to mark resolution) both modified: .github/workflows/_e2e.yaml both modified: .github/workflows/_test.yaml both modified: mk/k3d.mk ``` --------- Signed-off-by: Jay Chen <[email protected]> Signed-off-by: Charly Molter <[email protected]> Signed-off-by: Lukasz Dziedziak <[email protected]> Co-authored-by: Jay Jijie Chen <[email protected]> Co-authored-by: Charly Molter <[email protected]> Co-authored-by: Lukasz Dziedziak <[email protected]>
- Loading branch information
1 parent
06a9880
commit 1696ea1
Showing
9 changed files
with
105 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
# an ipv6 cluster | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
kubeadmConfigPatches: | ||
- | | ||
kind: InitConfiguration | ||
nodeRegistration: | ||
kubeletExtraArgs: | ||
node-labels: "ingress-ready=true" | ||
extraPortMappings: | ||
- containerPort: 30080 | ||
hostPort: 30080 | ||
protocol: TCP | ||
- containerPort: 30443 | ||
hostPort: 30443 | ||
protocol: TCP | ||
- role: control-plane | ||
kubeadmConfigPatches: | ||
- | | ||
kind: InitConfiguration | ||
nodeRegistration: | ||
kubeletExtraArgs: | ||
node-labels: "ingress-ready=true" | ||
extraPortMappings: | ||
- containerPort: 30080 | ||
hostPort: 30080 | ||
protocol: TCP | ||
- containerPort: 30443 | ||
hostPort: 30443 | ||
protocol: TCP | ||
extraMounts: | ||
- containerPath: /var/lib/kubelet/config.json | ||
hostPath: /tmp/.kuma-dev/kind-config.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# an ipv6 cluster | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
extraMounts: | ||
- containerPath: /var/lib/kubelet/config.json | ||
hostPath: /tmp/.kuma-dev/kind-config.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# an ipv6 cluster | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
extraMounts: | ||
- containerPath: /var/lib/kubelet/config.json | ||
hostPath: /tmp/.kuma-dev/kind-config.json |