Skip to content

Commit 4f22b86

Browse files
authored
fix: CONSTRAINS_SDMX_API_URL env is optional and must be null by default (#32)
1 parent 615f999 commit 4f22b86

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

charts/statgpt/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ maintainers:
5454
name: statgpt
5555
sources:
5656
- https://github.com/epam/statgpt-helm
57-
version: 1.0.9
57+
version: 1.0.10

charts/statgpt/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# statgpt
22

3-
![Version: 1.0.9](https://img.shields.io/badge/Version-1.0.9-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
3+
![Version: 1.0.10](https://img.shields.io/badge/Version-1.0.10-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
44

55
Umbrella chart for StatGPT solution
66

@@ -254,7 +254,6 @@ helm install my-release . --namespace my-namespace --values values.yaml --set ad
254254
| portal-frontend.commonLabels."app.kubernetes.io/component" | string | `"application"` | Kubernetes label to identify the component as an application |
255255
| portal-frontend.containerPorts.http | int | `3000` | HTTP port for the application |
256256
| portal-frontend.enabled | bool | `false` | Indicates whether the portal-frontend service is enabled |
257-
| portal-frontend.env.CONSTRAINS_SDMX_API_URL | string | `"environment-specific"` | SDMX Constrains API URL |
258257
| portal-frontend.env.DEFAULT_MODEL | string | `"environment-specific"` | Default model |
259258
| portal-frontend.env.DIAL_API_URL | string | `"environment-specific"` | DIAL API URL |
260259
| portal-frontend.env.DIAL_API_VERSION | string | `"environment-specific"` | DIAL API Version |

charts/statgpt/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,8 +731,8 @@ portal-frontend:
731731
DEFAULT_MODEL: "environment-specific"
732732
# -- SDMX API URL
733733
SDMX_API_URL: "environment-specific"
734-
# -- SDMX Constrains API URL
735-
CONSTRAINS_SDMX_API_URL: "environment-specific"
734+
# -- SDMX Constraints API URL (optional)
735+
# CONSTRAINS_SDMX_API_URL: "environment-specific"
736736
# -- URL for NextAuth service
737737
NEXTAUTH_URL: "environment-specific"
738738

0 commit comments

Comments
 (0)