I have an Azure Kubernetes Service with a load balancer which uses a health probe. The probe is automatically generated on pod startup and this probe is used for the load balancing rule. However, when the pod restarts, a new probe is created from scratch and assigned to the rule. How can I use the name/protocol for the probe which I have specified when the pods restart, either by changing the default protocol which Azure uses, or by using an existing health probe for the load balancing rule?
Thanks.