Add docs/images/multi-tenancy.png #622
Workflow file for this run
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
--- | |
name: Main | |
on: [push, pull_request] | |
jobs: | |
single-node: | |
name: "Single node" | |
strategy: | |
fail-fast: false | |
matrix: | |
container_engine: [docker, nerdctl, podman] | |
uses: ./.github/workflows/reusable-single-node.yaml | |
with: | |
container_engine: ${{ matrix.container_engine }} | |
multi-node: | |
name: "Multi node" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- lima_template: template://ubuntu-24.04 | |
container_engine: docker | |
- lima_template: template://ubuntu-24.04 | |
container_engine: nerdctl | |
- lima_template: template://centos-stream-9 | |
container_engine: podman | |
- lima_template: template://fedora | |
container_engine: podman | |
uses: ./.github/workflows/reusable-multi-node.yaml | |
with: | |
lima_template: ${{ matrix.lima_template }} | |
container_engine: ${{ matrix.container_engine }} | |
# TODO: this test should create multiple instances of Usernetes on each of the hosts | |
multi-node-custom-ports: | |
name: "Multi node with custom service ports" | |
uses: ./.github/workflows/reusable-multi-node.yaml | |
with: | |
lima_template: "template://ubuntu-24.04" | |
container_engine: "docker" | |
# Defaults to 6443 | |
kube_apiserver_port: "8080" | |
# Defaults to 8472 | |
flannel_port: "9072" | |
# Defaults to 10250 | |
kubelet_port: "20250" | |
# Defaults to 2379 | |
etcd_port: "9090" |