104 lines
3.1 KiB
HCL
104 lines
3.1 KiB
HCL
|
#Flavour kind
|
||
|
build {
|
||
|
name = "kind"
|
||
|
description = <<EOF
|
||
|
This builder builds a QEMU image from the base build output. The goal here is to install ${local.Kind.Name}
|
||
|
with it's provisionning.
|
||
|
EOF
|
||
|
|
||
|
source "source.qemu.nuo" {
|
||
|
output_directory = "${var.output_dir}/${var.version}/provisionned/${local.Kind.Name}"
|
||
|
vm_name = "${local.output_name}-${var.version}-${local.Kind.Name}.img"
|
||
|
iso_url = "${var.output_dir}/${var.version}/base/${local.output_name}-${var.version}.img"
|
||
|
iso_checksum = "none"
|
||
|
disk_size = 20480
|
||
|
disk_image = true
|
||
|
boot_command = [ "<enter><enter><wait>" ]
|
||
|
ssh_clear_authorized_keys = true
|
||
|
}
|
||
|
|
||
|
source "source.vmware-vmx.nuo" {
|
||
|
output_directory = "${var.output_dir}/${var.version}/provisionned/vmware/nuo-kind"
|
||
|
vm_name = "${local.output_name}-${var.version}-nuo-kind.img"
|
||
|
source_path = "${var.output_dir}/${var.version}/base/${local.output_name}-${var.version}.img.vmx"
|
||
|
boot_command = [ "<enter><enter><wait>" ]
|
||
|
ssh_clear_authorized_keys = true
|
||
|
vmx_data_post = {
|
||
|
"memsize" = "8192",
|
||
|
"numvcpus" = "4",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Install templater and bootstraper
|
||
|
provisioner "shell" {
|
||
|
script = "${local.locations.provisionning}/templater-install.sh"
|
||
|
}
|
||
|
|
||
|
// Copy configuration values on the image
|
||
|
provisioner "shell" {
|
||
|
inline = [
|
||
|
"sh -cx 'mkdir -p ${local.builder_config.TemplateDir}'",
|
||
|
"sh -cx 'mkdir -p ${local.builder_config.ValueDir}'"
|
||
|
]
|
||
|
}
|
||
|
|
||
|
// Copy configuration templates to the image
|
||
|
provisioner "file" {
|
||
|
destination = "${local.builder_config.TemplateDir}/"
|
||
|
source = "${local.locations.templates}/conf/${build.name}/"
|
||
|
}
|
||
|
|
||
|
// Copy configuration values on the image
|
||
|
provisioner "file" {
|
||
|
destination = "${local.builder_config.ValueDir}/${build.name}.json"
|
||
|
content = "${jsonencode(local.Kind)}"
|
||
|
}
|
||
|
|
||
|
// Generate default configuration for kind
|
||
|
provisioner "shell" {
|
||
|
max_retries = 3
|
||
|
inline = [ "sh -cx '/usr/local/bin/btr -c ${local.builder_config.ValueDir}/ -t ${local.builder_config.TemplateDir}'" ]
|
||
|
}
|
||
|
|
||
|
// Complete kind install
|
||
|
provisioner "shell" {
|
||
|
expect_disconnect = true
|
||
|
max_retries = 6
|
||
|
script = "${local.locations.provisionning}/${build.name}.sh"
|
||
|
}
|
||
|
|
||
|
// Copy ssh Cadoles keys
|
||
|
provisioner "file" {
|
||
|
destination = "/tmp"
|
||
|
source = "${local.locations.provisionning}/ssh/cadoles/"
|
||
|
}
|
||
|
|
||
|
// Copy CNOUS SSH keys
|
||
|
provisioner "file" {
|
||
|
destination = "/tmp"
|
||
|
source = "${local.locations.provisionning}/ssh/cnous/"
|
||
|
}
|
||
|
|
||
|
provisioner "file" {
|
||
|
destination = "/etc/local.d/init${build.name}.start"
|
||
|
source = "${local.locations.provisionning}/conf/${build.name}/init${build.name}.start"
|
||
|
}
|
||
|
|
||
|
provisioner "shell" {
|
||
|
inline = [
|
||
|
"sh -cx 'chmod +x /etc/local.d/init${build.name}.start'",
|
||
|
"sh -cx 'cat /tmp/*.pub >> /root/.ssh/authorized_keys'",
|
||
|
"sh -cx 'chmod -R 600 /root/.ssh/authorized_keys'"
|
||
|
]
|
||
|
}
|
||
|
|
||
|
provisioner "shell" {
|
||
|
inline = [
|
||
|
"service podman start",
|
||
|
//"service containerd start",
|
||
|
//"sleep 10",
|
||
|
//"kind create cluster --config /etc/cluster.yaml ",
|
||
|
"sleep 10"]
|
||
|
}
|
||
|
}
|