We have been trying to configure a K8 cluster that is deployed into Google Cloud Platform using the most economical set-up possible. Our solution will be deployed into different regional data centers due to regulatory and Geo-political constraints surrounding our commercial billing as a service platform called Bill Rush.
Given our regional requirements means that we want to make use of the following infrastructure settings:
- Committed Use virtual machine resource allocations. Our K8 nodes will be allocated to predefined fixed term compute infrastructure quotas when provisioned.
- Standard Network Tier - as local customers are only one or two hops away from a GCP regional/zone data center location we are happy to use external network providers to carry traffic across to the closest google network egress point into the data center. Premium network routing is not required.
- Regional environments and deployments. We only require a system to be running regionally across one or two zones for redundancy. We do not require fancier global redundancy set-ups.
Using these 3 options would give us the cheapest set-up for each of our regional application environments.
Also, all regional instances need bookmarkable URL's so that users can easily find our application environments. As such we need to seed each environment with DNS and external IPs. These need to be referenced in our YAML ingress files when we apply them to our K8 cluster environments.
The Issue:
We would like to use conventional Kubernetes best practice and define an ingress. This will expose an external entry point into the cluster that is provisioned and managed by a GKE specific Google Cloud Controller.
In the case of a GKE ingress, only a single set-up is supported: A Global HTTP(S) Load Balancer which includes [proxy, forwarding rule, external IPs, back ends, certificates]. When using a regional external IP the LB set-up fails.
Questions:
- Why are we not allowed to use regional external IPs in an ingress YAML declaration?
- What alternative GKE cluster configurations will support a standard network tier compliant external IP address
- Will this impact our ability to use Anthos for development and UAT clusters deployed on-premise.
Thanks in advance.