Jason Gross
Jason Gross
Yeah I can help out with this as well. I've done one for our setup and it works well.
For anyone else that came across this issue like I did, it appears this error is the result of not having any active/correctly configured outputs (namespaced or cluster-wide). Once I...
Having the same issue using my own storage class as well. Disabling probes doesnt help as the server seems to have trouble starting.
Yes it appears you need to create the route table as well. You will also need to make sure your command for null_resource.fix_routetable outputs in json. `az resource list --resource-group...
My route table configs looks like this: > // Azure Route Table resource "azurerm_route_table" "default" { name = "${azurerm_virtual_network.default.name}_rt" location = "${var.region}" resource_group_name = "${var.cluster_name}-${random_integer.default.result}" disable_bgp_route_propagation = false depends_on =...
I seemed to get pass that by: 1. Using a /22 or larger subnet 2. Setting the parameter for "firstConsecutiveStaticIP" somewhere in the middle of the subnet range ` first_master_ip...