mirror of
https://github.com/wahyd4/cert-manager.git
synced 2026-08-09 05:06:38 +10:00
Fix regression in Ingress PathType introduced in v1.5.0
Signed-off-by: Jake Sanders <i@am.so-aweso.me>
This commit is contained in:
committed by
jetstack-bot
parent
d49f8e1a49
commit
9037c7ce44
@@ -358,7 +358,7 @@ func (s *Solver) cleanupIngresses(ctx context.Context, ch *cmacme.Challenge) err
|
||||
func ingressPath(token, serviceName string) networkingv1.HTTPIngressPath {
|
||||
return networkingv1.HTTPIngressPath{
|
||||
Path: solverPathFn(token),
|
||||
PathType: func() *networkingv1.PathType { s := networkingv1.PathTypeExact; return &s }(),
|
||||
PathType: func() *networkingv1.PathType { s := networkingv1.PathTypeImplementationSpecific; return &s }(),
|
||||
Backend: networkingv1.IngressBackend{
|
||||
Service: &networkingv1.IngressServiceBackend{
|
||||
Name: serviceName,
|
||||
|
||||
Reference in New Issue
Block a user