feat: allow WASI workloads
This commit is contained in:
parent
e9afbb2f9f
commit
f234b8fcab
4 changed files with 55 additions and 12 deletions
|
@ -3,13 +3,40 @@ version: 1.1.0
|
||||||
|
|
||||||
systemd:
|
systemd:
|
||||||
units:
|
units:
|
||||||
|
- name: containerd.service
|
||||||
|
enabled: false
|
||||||
|
dropins:
|
||||||
|
- name: 10-use-custom-config.conf
|
||||||
|
contents: |
|
||||||
|
[Service]
|
||||||
|
ExecStart=
|
||||||
|
ExecStart=/usr/bin/containerd
|
||||||
|
- name: spin-shim-install.service
|
||||||
|
enabled: true
|
||||||
|
contents: |
|
||||||
|
[Unit]
|
||||||
|
Description=Run Spin Shim script
|
||||||
|
Wants = network-online.target
|
||||||
|
After = network.target network-online.target
|
||||||
|
StartLimitBurst=100
|
||||||
|
StartLimitIntervalSec=300
|
||||||
|
ConditionPathExists=!/var/lib/rancher/k3s/data/current/bin/containerd-shim-spin-v2
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
TimeoutStartSec=300
|
||||||
|
RemainAfterExit=yes
|
||||||
|
KillMode=process
|
||||||
|
ExecStart=/usr/bin/bash -c "until [ -d /var/lib/rancher/k3s/data/current/bin ]; do sleep 5; done; curl -L https://github.com/spinkube/containerd-shim-spin/releases/download/${spin_shim_version}/containerd-shim-spin-v2-linux-${arch}.tar.gz | tar -xz -C /var/lib/rancher/k3s/data/current/bin/"
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
- name: k3s-install.service
|
- name: k3s-install.service
|
||||||
enabled: true
|
enabled: true
|
||||||
contents: |
|
contents: |
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Run K3s script
|
Description=Run K3s script
|
||||||
Wants = network-online.target
|
Wants = network-online.target
|
||||||
After = network.target network-online.target
|
After = network.target network-online.target
|
||||||
ConditionPathExists=/opt/k3s-install.sh
|
ConditionPathExists=/opt/k3s-install.sh
|
||||||
ConditionPathExists=!/opt/bin/k3s
|
ConditionPathExists=!/opt/bin/k3s
|
||||||
[Service]
|
[Service]
|
||||||
|
@ -34,4 +61,13 @@ storage:
|
||||||
- path: /opt/k3s-install.sh
|
- path: /opt/k3s-install.sh
|
||||||
mode: 0777
|
mode: 0777
|
||||||
contents:
|
contents:
|
||||||
source: https://get.k3s.io
|
source: https://get.k3s.io
|
||||||
|
- path: /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl
|
||||||
|
mode: 0644
|
||||||
|
contents:
|
||||||
|
inline: |
|
||||||
|
{{- template "base" . }}
|
||||||
|
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.spin]
|
||||||
|
runtime_type = "io.containerd.spin.v2"
|
||||||
|
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.spin.options]
|
||||||
|
BinaryName = "/opt/bin/containerd-shim-spin-v2"
|
||||||
|
|
|
@ -146,11 +146,13 @@ data "ct_config" "machine-ignitions" {
|
||||||
content = templatefile(
|
content = templatefile(
|
||||||
"${path.module}/configs/workers/k3s-flatcar.yaml",
|
"${path.module}/configs/workers/k3s-flatcar.yaml",
|
||||||
{
|
{
|
||||||
"host" = "${each.key}"
|
"host" = each.key
|
||||||
"k3s_token" = "${var.k3s_token}"
|
"k3s_token" = var.k3s_token
|
||||||
"node_ip" = "${each.value.private_ip}"
|
"node_ip" = each.value.private_ip
|
||||||
"k3s_version" = "${var.worker_k3s_version}"
|
"k3s_version" = var.worker_k3s_version
|
||||||
"storage_node" = each.value.storage_node
|
"storage_node" = each.value.storage_node
|
||||||
|
"spin_shim_version" = var.spin_shim_version
|
||||||
|
"arch" = startswith(each.value.server_type, "cax") ? "aarch64" : "x86_64"
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
snippets = [
|
snippets = [
|
||||||
|
|
5
vars.tf
5
vars.tf
|
@ -37,6 +37,11 @@ variable "litestream_version" {
|
||||||
default = "v0.3.13"
|
default = "v0.3.13"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "spin_shim_version" {
|
||||||
|
type = string
|
||||||
|
default = "v0.16.0"
|
||||||
|
}
|
||||||
|
|
||||||
variable "control_plane_k3s_version" {
|
variable "control_plane_k3s_version" {
|
||||||
type = string
|
type = string
|
||||||
default = "v1.30.5+k3s1"
|
default = "v1.30.5+k3s1"
|
||||||
|
|
|
@ -17,7 +17,7 @@ k3s_sans = [
|
||||||
k3s_workers = {
|
k3s_workers = {
|
||||||
"w1-cx22-hel1" = {
|
"w1-cx22-hel1" = {
|
||||||
server_type = "cx22"
|
server_type = "cx22"
|
||||||
generation = 1
|
generation = 10
|
||||||
private_ip = "172.23.2.20"
|
private_ip = "172.23.2.20"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = false
|
storage_node = false
|
||||||
|
@ -25,7 +25,7 @@ k3s_workers = {
|
||||||
|
|
||||||
"w2-cax11-hel1" = {
|
"w2-cax11-hel1" = {
|
||||||
server_type = "cax11"
|
server_type = "cax11"
|
||||||
generation = 1
|
generation = 10
|
||||||
private_ip = "172.23.2.21"
|
private_ip = "172.23.2.21"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = true
|
storage_node = true
|
||||||
|
@ -33,7 +33,7 @@ k3s_workers = {
|
||||||
|
|
||||||
"w3-cax11-hel1" = {
|
"w3-cax11-hel1" = {
|
||||||
server_type = "cax11"
|
server_type = "cax11"
|
||||||
generation = 1
|
generation = 6
|
||||||
private_ip = "172.23.2.22"
|
private_ip = "172.23.2.22"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = true
|
storage_node = true
|
||||||
|
@ -41,7 +41,7 @@ k3s_workers = {
|
||||||
|
|
||||||
"w4-cax11-hel1" = {
|
"w4-cax11-hel1" = {
|
||||||
server_type = "cax11"
|
server_type = "cax11"
|
||||||
generation = 1
|
generation = 3
|
||||||
private_ip = "172.23.2.23"
|
private_ip = "172.23.2.23"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = true
|
storage_node = true
|
||||||
|
@ -49,7 +49,7 @@ k3s_workers = {
|
||||||
|
|
||||||
"w5-cax11-hel1" = {
|
"w5-cax11-hel1" = {
|
||||||
server_type = "cax11"
|
server_type = "cax11"
|
||||||
generation = 1
|
generation = 3
|
||||||
private_ip = "172.23.2.24"
|
private_ip = "172.23.2.24"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = true
|
storage_node = true
|
||||||
|
@ -57,7 +57,7 @@ k3s_workers = {
|
||||||
|
|
||||||
"w6-cax11-hel1" = {
|
"w6-cax11-hel1" = {
|
||||||
server_type = "cax11"
|
server_type = "cax11"
|
||||||
generation = 1
|
generation = 4
|
||||||
private_ip = "172.23.2.25"
|
private_ip = "172.23.2.25"
|
||||||
location = "hel1"
|
location = "hel1"
|
||||||
storage_node = true
|
storage_node = true
|
||||||
|
|
Loading…
Add table
Reference in a new issue