feat: Manage VM identifiers
This commit is contained in:
parent
66c61fafc9
commit
2aa47a54d1
7 changed files with 8 additions and 29 deletions
|
|
@ -38,6 +38,7 @@ cluster:
|
|||
disabled: true
|
||||
extraManifests:
|
||||
- https://github.com/kubernetes-sigs/gateway-api/releases/download/v${gateway-api_version}/standard-install.yaml
|
||||
- https://raw.githubusercontent.com/alex1989hu/kubelet-serving-cert-approver/main/deploy/standalone-install.yaml
|
||||
inlineManifests:
|
||||
- name: cilium-bootstrap
|
||||
contents: |
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ cluster:
|
|||
disabled: true
|
||||
extraManifests:
|
||||
- https://github.com/kubernetes-sigs/gateway-api/releases/download/v${gateway-api_version}/standard-install.yaml
|
||||
- https://raw.githubusercontent.com/alex1989hu/kubelet-serving-cert-approver/main/deploy/standalone-install.yaml
|
||||
inlineManifests:
|
||||
- name: cilium-bootstrap
|
||||
contents: |
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ terraform {
|
|||
}
|
||||
|
||||
resource "proxmox_virtual_environment_vm" "talos-node" {
|
||||
vm_id = var.node.id
|
||||
name = var.node.name
|
||||
node_name = var.node.proxmox_node
|
||||
tags = ["tofu"]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
variable "node" {
|
||||
description = "Virtual node configuration"
|
||||
type = object({
|
||||
id = number
|
||||
name = string
|
||||
ipv4_address = string
|
||||
ipv4_gateway = string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue