mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2025-10-27 07:43:07 +00:00
Compare commits
4 Commits
a7f3b6d7e1
...
a4b33a570b
| Author | SHA1 | Date | |
|---|---|---|---|
| a4b33a570b | |||
| c7c1388112 | |||
| b875d6428b | |||
| e1b0d702c5 |
13
secrets-output/iac.ansible.hosts.ini
Normal file
13
secrets-output/iac.ansible.hosts.ini
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
[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
secrets/iac.proxmox.ssh.link
Normal file
1
secrets/iac.proxmox.ssh.link
Normal file
@ -0,0 +1 @@
|
|||||||
|
proxmox-ssh.example.com
|
||||||
1
secrets/iac.vaultwarden-link
Normal file
1
secrets/iac.vaultwarden-link
Normal file
@ -0,0 +1 @@
|
|||||||
|
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,6 +20,7 @@ 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
|
||||||
@ -33,13 +34,14 @@ proxmox_k8s_vms = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
extra_packages = []
|
extra_packages = []
|
||||||
extra_runcmd = []
|
extra_runcmd = ["sudo ip addr add 192.168.1.199/24 dev eth0"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
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
|
||||||
@ -53,6 +55,6 @@ proxmox_k8s_vms = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
extra_packages = []
|
extra_packages = []
|
||||||
extra_runcmd = []
|
extra_runcmd = ["sudo ip addr add 192.168.1.201/24 dev eth0"]
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user