melodic-finland-71965
07/02/2024, 3:43 PMlimited-vr-72564
07/02/2024, 6:23 PM${KRATOS_PUBLIC}
variable is the kratos
, but you would need to set up NGINX Ingress controller in to your K8S cluster for this to work.
ingress: {
public: {
enabled: true,
className: 'nginx',
annotations: {
'<http://nginx.ingress.kubernetes.io/rewrite-target|nginx.ingress.kubernetes.io/rewrite-target>': '/$1',
'<http://nginx.ingress.kubernetes.io/use-regex|nginx.ingress.kubernetes.io/use-regex>': 'true',
},
hosts: [
{
host: pulumi.interpolate`${clusterDomainName}`,
paths: [
{
path: `/${KRATOS_PUBLIC}/(.*)`,
pathType: 'ImplementationSpecific',
},
],
},
],
},
},