Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add proxmox terraform example #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions proxmox/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cloud_drives
26 changes: 26 additions & 0 deletions proxmox/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Proxmox

This small examplez demo how to provision flatcar on proxmox using terraform
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This small examplez demo how to provision flatcar on proxmox using terraform
This small example demo how to provision flatcar on Proxmox using Terraform


## Prerequisite

- A proxmox cluster with credentials
- `terraform`
- `mkisofs`:
ArchLinux: `pacman -Sy crdtools`
Debian/Ubuntu: `apt install genisoimage`
Mac OS: `brew install cdrtools`
RPM/DNF based OS: `dnf install mkisofs`


## How-to

This module use the `bpg/proxmox` provider, and you configure it using environment variable [here](https://registry.terraform.io/providers/bpg/proxmox/latest/docs#argument-reference)

```
export PROXMOX_VE_ENDPOINT=
export PROXMOX_VE_USERNAME=
export PROXMOS_VE_PASSWORD=
terraform init
terraform apply
```
50 changes: 50 additions & 0 deletions proxmox/cloud_drives.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
locals {
cloud_drives = { for vm in var.machines :
vm => "${path.module}/cloud_drives/${vm}/cloud_drive.iso"
}
}

data "ct_config" "ignition" {
for_each = toset(var.machines)
content = templatefile("templates/machine-${each.key}.yaml", {
ssh_keys = var.ssh_keys
})

strict = true
}
resource "local_file" "userdata_ignition" {
for_each = toset(var.machines)
content = data.ct_config.ignition[each.key].rendered
filename = "${path.module}/cloud_drives/${each.key}/drive/openstack/latest/user_data"
}

resource "local_file" "meta_data_openstack" {
for_each = toset(var.machines)
content = templatefile("${path.module}/templates/meta_data.json", {
vm_name = each.key
})
filename = "${path.module}/cloud_drives/${each.key}/drive/openstack/latest/meta_data.json"
}

# Create cloud-drive cdrom locally
resource "null_resource" "cloud_init_drive" {
for_each = toset(var.machines)
provisioner "local-exec" {
command = "mkisofs -output ${local.cloud_drives[each.key]} -volid config-2 -joliet -r ${path.module}/cloud_drives/${each.key}/drive"
}

depends_on = [local_file.meta_data_openstack, local_file.userdata_ignition]
}

# Upload cloud_drives to proxmox
resource "proxmox_virtual_environment_file" "cloud_drive" {
for_each = toset(var.machines)
content_type = "iso"
datastore_id = var.datastore_local
node_name = local.hypervisor

source_file {
file_name = "${each.key}_cloud_drive.iso"
path = local.cloud_drives[each.key]
}
}
3 changes: 3 additions & 0 deletions proxmox/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
output "flatcar_template" {
value = proxmox_virtual_environment_vm.flatcar_template
}
10 changes: 10 additions & 0 deletions proxmox/providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
terraform {
required_providers {
ct = {
source = "poseidon/ct"
}
proxmox = {
source = "bpg/proxmox"
}
}
}
24 changes: 24 additions & 0 deletions proxmox/templates/machine-test-flatcar.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
variant: flatcar
version: 1.1.0
passwd:
users:
- name: core
ssh_authorized_keys:
%{ for key in ssh_keys }
- ${key}
%{ endfor }
systemd:
units:
- name: flatcar-openstack-hostname.service
mask: true
storage:
files:
- path: /etc/systemd/network/00-eth0.network
contents:
inline: |
[Match]
Name=eth0
[Network]
Address=192.0.2.10/24
Gateway=192.0.2.1/24
DNS=1.1.1.1
10 changes: 10 additions & 0 deletions proxmox/templates/meta_data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"uuid": "${ uuidv5("dns", vm_name) }",
"availability_zone": "nova",
"hostname": "${ vm_name }",
"launch_index": 0,
"meta": {},
"project_id": "${ uuidv5("dns", "proxmox") }",
"name": "${ vm_name }"
}

45 changes: 45 additions & 0 deletions proxmox/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
variable "machines" {
type = list(string)
description = "Machine names, corresponding to templates/machine-NAME.yaml"
}

variable "datastore_local" {
default = "local"
description = "datastore_id of hypervisor local storage"
type = string
}

variable "datastore_vm" {
default = "local-zfs"
description = "datastore_id of VM storage"
type = string
}

variable "flatcar_version" {
type = string
description = "The Flatcar version associated to the release channel"
default = "current"
}

variable "release_channel" {
type = string
description = "Release channel"
default = "stable"

validation {
condition = contains(["lts", "stable", "beta", "alpha"], var.release_channel)
error_message = "release_channel must be lts, stable, beta, or alpha."
}
}

variable "ssh_keys" {
default = []
description = "List of ssh-keys to authenticate to the flatcar VM"
type = list(string)
}

variable "vm_name" {
default = "test-flatcar"
description = "proxmox VM name (also used as hostname in this repository)"
type = string
}
32 changes: 32 additions & 0 deletions proxmox/virtual_machine.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

resource "proxmox_virtual_environment_vm" "instance" {
for_each = toset(var.machines)
clone {
vm_id = proxmox_virtual_environment_vm.flatcar_template.vm_id
node_name = local.hypervisor
}

name = each.key
node_name = local.hypervisor
started = true

cpu {
cores = 2
}

memory {
dedicated = 2048
}

cdrom {
enabled = true
file_id = "${var.datastore_local}:iso/${each.key}_cloud_drive.iso"
}

lifecycle {
ignore_changes = [
node_name
]
}
}

40 changes: 40 additions & 0 deletions proxmox/vm_template.tf