fix(k8s): update ingress configuration for backend service
Add pathType as Prefix to the ingress path definition. Update the backend service reference to use the new format with 'service' instead of 'serviceName' for improved clarity and adherence to Kubernetes API standards.
This commit is contained in:
@@ -11,9 +11,12 @@ spec:
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
serviceName: auth0mock
|
||||
servicePort: 3333
|
||||
service:
|
||||
name: auth0mock
|
||||
port:
|
||||
number: 3333
|
||||
tls:
|
||||
- hosts:
|
||||
- auth0
|
||||
|
||||
Reference in New Issue
Block a user