From 83c2a7e44bbd81bc18fc1583eab29705abbf5f50 Mon Sep 17 00:00:00 2001 From: Eric Bellm Date: Thu, 30 Jan 2025 10:07:55 -0800 Subject: [PATCH] adjust ingress --- applications/tasso/README.md | 2 +- applications/tasso/templates/ingress.yaml | 2 +- applications/tasso/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/tasso/README.md b/applications/tasso/README.md index 72380db4c7..12e9b1593e 100644 --- a/applications/tasso/README.md +++ b/applications/tasso/README.md @@ -15,7 +15,7 @@ Cutout labeling service | config.databaseUrl | string | `""` | database connection url | | config.logLevel | string | `"INFO"` | Logging level | | config.logProfile | string | `"production"` | Logging profile (`production` for JSON, `development` for human-friendly) | -| config.pathPrefix | string | `"/tasso"` | URL path prefix | +| config.pathPrefix | string | `"/tasso-api"` | URL path prefix | | config.slackAlerts | bool | `false` | Whether to send Slack alerts for unexpected failures | | global.baseUrl | string | Set by Argo CD | Base URL for the environment | | global.host | string | Set by Argo CD | Host name for ingress | diff --git a/applications/tasso/templates/ingress.yaml b/applications/tasso/templates/ingress.yaml index 816d9fcd84..035d4a07a4 100644 --- a/applications/tasso/templates/ingress.yaml +++ b/applications/tasso/templates/ingress.yaml @@ -30,7 +30,7 @@ template: name: "tasso" port: number: 8080 - - path: "/webapp" + - path: "/tasso" pathType: "Prefix" backend: service: diff --git a/applications/tasso/values.yaml b/applications/tasso/values.yaml index 530c80f16b..cf68deab39 100644 --- a/applications/tasso/values.yaml +++ b/applications/tasso/values.yaml @@ -25,7 +25,7 @@ config: logProfile: "production" # -- URL path prefix - pathPrefix: "/tasso" + pathPrefix: "/tasso-api" # -- Whether to send Slack alerts for unexpected failures slackAlerts: false