mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2026-03-22 17:09:54 +00:00
Compare commits
19 Commits
fenix-admi
...
adbf69fefe
| Author | SHA1 | Date | |
|---|---|---|---|
| adbf69fefe | |||
| 5772fb36d2 | |||
| 99afd901dc | |||
| 8a5c2ce64c | |||
| 453ff5202e | |||
| d24306ce8c | |||
| b2533ac7cb | |||
| 00239da11c | |||
| 9911825872 | |||
| 1e0110fe1a | |||
| 5a24f06fd8 | |||
| 11e8997be8 | |||
| d4811cbcfe | |||
| 6258d9e279 | |||
| eaadf11a99 | |||
| 50e52fb839 | |||
| 43bd8914aa | |||
| c457178d48 | |||
| 01d40d4120 |
@ -2,7 +2,7 @@ https://spacelift.io/blog/opentofu-tutorial - explaining language of opentofu
|
|||||||
|
|
||||||
https://opentofu.org/docs/intro/ - quick start and explaning who to work in team
|
https://opentofu.org/docs/intro/ - quick start and explaning who to work in team
|
||||||
|
|
||||||
https://opentofu.org/docs/intro/ - CICD for opentofu explained
|
https://opentofu.org/docs/intro/ - CICD for opentofu explained
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from ruamel.yaml import YAML
|
from ruamel.yaml import YAML
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
from collections.abc import Mapping
|
from collections.abc import Mapping
|
||||||
|
|||||||
21
proxmox.tf
21
proxmox.tf
@ -19,7 +19,7 @@ resource "proxmox_virtual_environment_download_file" "latest_ubunto_cloud_img" {
|
|||||||
content_type = "iso"
|
content_type = "iso"
|
||||||
datastore_id = "local"
|
datastore_id = "local"
|
||||||
node_name = "fenix"
|
node_name = "fenix"
|
||||||
url = "https://cloud-images.ubuntu.com/jammy/20251206/jammy-server-cloudimg-amd64.img"
|
url = "https://cloud-images.ubuntu.com/jammy/20250725/jammy-server-cloudimg-amd64.img"
|
||||||
file_name = "jammyservercloudimgamd64.img"
|
file_name = "jammyservercloudimgamd64.img"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,7 +105,6 @@ resource "proxmox_virtual_environment_vm" "proxmox-kubernetes-VM-template" {
|
|||||||
|
|
||||||
cpu {
|
cpu {
|
||||||
cores = 2
|
cores = 2
|
||||||
type = "host"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
@ -117,14 +116,13 @@ resource "proxmox_virtual_environment_vm" "proxmox-kubernetes-VM-template" {
|
|||||||
file_id = proxmox_virtual_environment_download_file.latest_ubunto_cloud_img.id
|
file_id = proxmox_virtual_environment_download_file.latest_ubunto_cloud_img.id
|
||||||
interface = "scsi0"
|
interface = "scsi0"
|
||||||
file_format = "qcow2"
|
file_format = "qcow2"
|
||||||
size = 64
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Configuração da interface de rede
|
# Configuração da interface de rede
|
||||||
network_device {
|
network_device {
|
||||||
bridge = "vmbr0" # rede de gestão para comunicação com Cluster B
|
bridge = "vmbr0"
|
||||||
}
|
}
|
||||||
|
|
||||||
initialization {
|
initialization {
|
||||||
dns {
|
dns {
|
||||||
servers = ["1.1.1.1"]
|
servers = ["1.1.1.1"]
|
||||||
@ -134,7 +132,6 @@ initialization {
|
|||||||
address = "dhcp"
|
address = "dhcp"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
user_data_file_id = proxmox_virtual_environment_file.cloud_init_yaml.id
|
user_data_file_id = proxmox_virtual_environment_file.cloud_init_yaml.id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -149,12 +146,10 @@ resource "proxmox_virtual_environment_vm" "k8s_vms" {
|
|||||||
|
|
||||||
clone {
|
clone {
|
||||||
vm_id = proxmox_virtual_environment_vm.proxmox-kubernetes-VM-template.id
|
vm_id = proxmox_virtual_environment_vm.proxmox-kubernetes-VM-template.id
|
||||||
full = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu {
|
cpu {
|
||||||
cores = each.value.cores
|
cores = each.value.cores
|
||||||
type = "host"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
@ -167,16 +162,6 @@ resource "proxmox_virtual_environment_vm" "k8s_vms" {
|
|||||||
interface = "scsi1"
|
interface = "scsi1"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Bloco dinâmico para lista de hostpci
|
|
||||||
dynamic "hostpci" {
|
|
||||||
for_each = try(each.value.hostpci, [])
|
|
||||||
content {
|
|
||||||
device = hostpci.value.device
|
|
||||||
pcie = try(hostpci.value.pcie, true)
|
|
||||||
mapping = hostpci.value.mapping
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
initialization {
|
initialization {
|
||||||
ip_config {
|
ip_config {
|
||||||
ipv4 {
|
ipv4 {
|
||||||
|
|||||||
@ -40,13 +40,6 @@ variable "proxmox_k8s_vms" {
|
|||||||
vm_id = number
|
vm_id = number
|
||||||
node_name = string
|
node_name = string
|
||||||
ip = string
|
ip = string
|
||||||
ip2 = string
|
|
||||||
ip3 = string
|
|
||||||
hostpci = optional(list(object({
|
|
||||||
pcie = bool
|
|
||||||
device = string
|
|
||||||
mapping = string
|
|
||||||
})))
|
|
||||||
cores = optional(number)
|
cores = optional(number)
|
||||||
memory = optional(number)
|
memory = optional(number)
|
||||||
data_store = optional(string)
|
data_store = optional(string)
|
||||||
|
|||||||
@ -1,13 +0,0 @@
|
|||||||
|
|
||||||
[master]
|
|
||||||
master1 ansible_host=192.168.1.99 ansible_user=user ansible_ssh_pass=pass ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|
|
||||||
|
|
||||||
[workers]
|
|
||||||
|
|
||||||
|
|
||||||
worker-192-168-1-101 ansible_host=192.168.1.101 ansible_user=user ansible_ssh_pass=pass ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1 +0,0 @@
|
|||||||
proxmox-ssh.example.com
|
|
||||||
@ -1 +0,0 @@
|
|||||||
https://vaultwarden.example.com
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
#proxmox_server = "proxmox.example.com"
|
proxmox_server = "proxmox.example.com"
|
||||||
#PM_API_TOKEN_ID = "tokenid"
|
PM_API_TOKEN_ID = "tokenid"
|
||||||
#PM_API_TOKEN_SECRET = "tokensecret"
|
PM_API_TOKEN_SECRET = "tokensecret"
|
||||||
# tokenid is read automatically from PM_API_TOKEN_ID
|
# tokenid is read automatically from PM_API_TOKEN_ID
|
||||||
# token is read automatically from PM_API_TOKEN_SECRET
|
# token is read automatically from PM_API_TOKEN_SECRET
|
||||||
|
|
||||||
@ -20,7 +20,6 @@ proxmox_k8s_vms = [
|
|||||||
vm_id = 3001
|
vm_id = 3001
|
||||||
node_name = "node"
|
node_name = "node"
|
||||||
ip = "192.168.1.99/24"
|
ip = "192.168.1.99/24"
|
||||||
ip3 = "192.168.1.199/24"
|
|
||||||
cores = 2
|
cores = 2
|
||||||
memory = 2000
|
memory = 2000
|
||||||
disk_size = 32
|
disk_size = 32
|
||||||
@ -34,14 +33,13 @@ proxmox_k8s_vms = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
extra_packages = []
|
extra_packages = []
|
||||||
extra_runcmd = ["sudo ip addr add 192.168.1.199/24 dev eth0"]
|
extra_runcmd = []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "k8s-worker-01"
|
name = "k8s-worker-01"
|
||||||
vm_id = 3002
|
vm_id = 3002
|
||||||
node_name = "node"
|
node_name = "node"
|
||||||
ip = "192.168.1.101/24"
|
ip = "192.168.1.101/24"
|
||||||
ip3 = "192.168.1.201/24"
|
|
||||||
cores = 1
|
cores = 1
|
||||||
memory = 2000
|
memory = 2000
|
||||||
disk_size = 32
|
disk_size = 32
|
||||||
@ -55,6 +53,6 @@ proxmox_k8s_vms = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
extra_packages = []
|
extra_packages = []
|
||||||
extra_runcmd = ["sudo ip addr add 192.168.1.201/24 dev eth0"]
|
extra_runcmd = []
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
@ -47,7 +47,7 @@ locals{
|
|||||||
hosts_ini = <<EOT
|
hosts_ini = <<EOT
|
||||||
|
|
||||||
[master]
|
[master]
|
||||||
master1 ansible_host=${split("/", var.proxmox_k8s_vms[0].ip)[0]} ansible_user=${var.proxmox_k8s_vms[0].extra_users[0].name} ansible_ssh_pass=${var.proxmox_k8s_vms[0].extra_users[0].password} ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|
master-${replace(split("/", var.proxmox_k8s_vms[0].ip)[0], ".", "-")} ansible_host=${split("/", var.proxmox_k8s_vms[0].ip)[0]} ansible_user=${var.proxmox_k8s_vms[0].extra_users[0].name} ansible_ssh_pass=${var.proxmox_k8s_vms[0].extra_users[0].password} ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|
||||||
|
|
||||||
[workers]
|
[workers]
|
||||||
%{ for i, vm in var.proxmox_k8s_vms ~}
|
%{ for i, vm in var.proxmox_k8s_vms ~}
|
||||||
|
|||||||
Reference in New Issue
Block a user