Skip to content

Commit

Permalink
Add missing inventory for CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsQasim committed Apr 19, 2023
1 parent 7ff5ddf commit 47ad981
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions contrib/terraform/hetzner/sample-inventory/cluster.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
prefix = "default"
zone = "hel1"
network_zone = "eu-central"
inventory_file = "inventory.ini"

ssh_public_keys = [
# Put your public SSH key here
"ssh-rsa I-did-not-read-the-docs",
"ssh-rsa I-did-not-read-the-docs 2",
]

ssh_private_key_path = "~/.ssh/id_rsa"

machines = {
"master-0" : {
"node_type" : "master",
"size" : "cx21",
"image" : "ubuntu-22.04",
},
"worker-0" : {
"node_type" : "worker",
"size" : "cx21",
"image" : "ubuntu-22.04",
},
"worker-1" : {
"node_type" : "worker",
"size" : "cx21",
"image" : "ubuntu-22.04",
}
}

nodeport_whitelist = [
"0.0.0.0/0"
]

ingress_whitelist = [
"0.0.0.0/0"
]

ssh_whitelist = [
"0.0.0.0/0"
]

api_server_whitelist = [
"0.0.0.0/0"
]
1 change: 1 addition & 0 deletions contrib/terraform/hetzner/sample-inventory/group_vars

0 comments on commit 47ad981

Please sign in to comment.