diff --git a/pkg/internal/wordpress/pod_template.go b/pkg/internal/wordpress/pod_template.go index 5a21b8cc..3bc66596 100644 --- a/pkg/internal/wordpress/pod_template.go +++ b/pkg/internal/wordpress/pod_template.go @@ -507,6 +507,12 @@ func (wp *Wordpress) readinessProbe() *corev1.Probe { HTTPGet: &corev1.HTTPGetAction{ Path: "/", Port: intstr.FromInt(InternalHTTPPort), + HTTPHeaders: []corev1.HTTPHeader{ + { + Name: "Host", + Value: wp.MainDomain(), + }, + }, }, }, FailureThreshold: 3,