Skip to content

Commit

Permalink
Changed GeoWeb warnings backend default path
Browse files Browse the repository at this point in the history
  • Loading branch information
kasarit committed Dec 18, 2024
1 parent b695c77 commit ef2d87e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/geoweb-warnings-backend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.1
version: 1.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 3 additions & 1 deletion charts/geoweb-warnings-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ The following table lists the configurable parameters of the Warnings backend ch
| `warnings.commitHash` | Adds commitHash annotation to the deployment | |
| `warnings.imagePullPolicy` | Adds option to modify imagePullPolicy | |
| `warnings.url` | Url which the application can be accessed | |
| `warnings.path` | Path suffix added to url | `/warnings/(.*)` |
| `warnings.path` | Path suffix added to url | `/warnings-backend/(.*)` |
| `warnings.svcPort` | Port used for service | `80` |
| `warnings.replicas` | Amount of replicas deployed | `1` |
| `warnings.minPodsAvailable` | Minimum available pods in pod disruption budget. Value `0` omits the pdb. | `0` |
Expand All @@ -111,6 +111,7 @@ The following table lists the configurable parameters of the Warnings backend ch
| `warnings.livenessProbe` | Configure libenessProbe | see defaults from `values.yaml` |
| `warnings.readinessProbe` | Configure readinessProbe | see defaults from `values.yaml` |
| `warnings.env.WARNINGS_PORT_HTTP` | Port used for container | `8080` |
| `warnings.env.APPLICATION_ROOT_PATH` | Application root path for FastAPI. Generally same as `warnings.path` without the wildcard. | `/warnings-backend` |
| `secretProvider` | Option to use secret provider instead of passing base64 encoded database connection string as warnings.db_secret *(aws\|azure\|gcp\|vault)* | |
| `secretProviderParameters` | Option to add custom parameters to the secretProvider, for example with aws you can specify region | |
| `warnings.nginx.name` | Name of nginx container | `nginx` |
Expand Down Expand Up @@ -157,6 +158,7 @@ The following table lists the configurable parameters of the Warnings backend ch

| Chart version | warnings version |
|---------------|------------------|
| 1.1.0 | 1.5.3 |
| 1.0.1 | 1.5.3 |
| 1.0.0 | 1.5.3 |
| 0.7.3 | 1.5.3 |
Expand Down
3 changes: 2 additions & 1 deletion charts/geoweb-warnings-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ versions:
warnings:
name: warnings
registry: registry.gitlab.com/opengeoweb/backend-services/warnings-backend/warnings-backend
path: /warnings/(.*)
path: /warnings-backend/(.*)
svcPort: 80
replicas: 1
minPodsAvailable: 0
Expand Down Expand Up @@ -37,6 +37,7 @@ warnings:
failureThreshold: 1
env:
WARNINGS_PORT_HTTP: 8080
APPLICATION_ROOT_PATH: /warnings-backend
nginx:
name: warnings-nginx
registry: registry.gitlab.com/opengeoweb/backend-services/auth-backend/auth-backend
Expand Down

0 comments on commit ef2d87e

Please sign in to comment.