az network public-ip create --name <name> --resource-group <rg name> --allocation-method Static --dns-name <dns name>
{
"publicIp": {
"ipAddress": "1.2.3.4",
...
"provisioningState": "Succeeded",
...
}
}
$ kubectl describe svc -n kube-system ingressservice
...
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal EnsuringLoadBalancer 9s (x2 over 24s) service-controller Ensuring load balancer
Warning CreatingLoadBalancerFailed 9s (x2 over 14s) service-controller Error creating load balancer (will retry): Failed to ensure load balancer for service kube-system/ingressservice: user supplied IP Address 1.2.3.4 was not found
Help? Shouldn't this just work? The IP is in the same resource group.
Is it an issue with AKS? It seems to work for ACS..