From 5080abf50eab17916c75adee4aa9085bd6e1afc9 Mon Sep 17 00:00:00 2001 From: YONG WOOK KIM Date: Fri, 19 Jan 2024 16:19:57 -0600 Subject: [PATCH 1/3] Add mongodb uri to incore auth (#95) * Adde MONGODB_URI to auth deployment * fixed spacing issue in variable --- Chart.yaml | 2 +- README.md | 3 +++ templates/auth/deployment.yaml | 5 +++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Chart.yaml b/Chart.yaml index d410a3a..cb7209d 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -47,5 +47,5 @@ annotations: - name: Helm Chart url: https://github.com/IN-CORE/incore-helm artifacthub.io/changes: | - - IN-CORE release 4.8.1 + - Added MONGODB_URI to auth deployment diff --git a/README.md b/README.md index 3566ce2..038c51d 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,9 @@ For an example of using existing PVC, see the file [incore-pvc.yaml](incore-pvc. ## ChangeLog +### Unreleased +- Added MONGODB_URI to auth deployment + ### 1.22.1 - IN-CORE release 4.8.1 diff --git a/templates/auth/deployment.yaml b/templates/auth/deployment.yaml index 176b64d..932b60f 100644 --- a/templates/auth/deployment.yaml +++ b/templates/auth/deployment.yaml @@ -55,6 +55,11 @@ spec: secretKeyRef: name: {{ include "incore.fullname" . }}-services key: INFLUXDB_V2_TOKEN + - name: MONGODB_URI + valueFrom: + secretKeyRef: + name: {{ include "incore.fullname" . }}-services + key: COMMON_MONGODB_URI volumeMounts: - name: {{ include "incore.name" . }}-auth mountPath: /srv/incore_auth/data From 50c165796d2c8295afe534bd2d04469465351797 Mon Sep 17 00:00:00 2001 From: Ya-Lan Yang Date: Wed, 7 Feb 2024 02:24:33 +0800 Subject: [PATCH 2/3] release --- Chart.yaml | 6 +++--- README.md | 3 +++ values.yaml | 22 +++++++++++----------- 3 files changed, 17 insertions(+), 14 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index d410a3a..8419785 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -8,12 +8,12 @@ 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.22.1 +version: 1.23.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 # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 4.8.1 +appVersion: 4.8.2 # List of people that maintain this helm chart. maintainers: @@ -47,5 +47,5 @@ annotations: - name: Helm Chart url: https://github.com/IN-CORE/incore-helm artifacthub.io/changes: | - - IN-CORE release 4.8.1 + - IN-CORE release 4.8.2 diff --git a/README.md b/README.md index 3566ce2..4ffacba 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,9 @@ For an example of using existing PVC, see the file [incore-pvc.yaml](incore-pvc. ## ChangeLog +### 1.23.0 +- IN-CORE release 4.8.2 + ### 1.22.1 - IN-CORE release 4.8.1 diff --git a/values.yaml b/values.yaml index aff1540..5fd4f96 100644 --- a/values.yaml +++ b/values.yaml @@ -134,7 +134,7 @@ frontend: replicas: 1 image: repository: frontend - tag: 1.9.1 + tag: 1.10.0 service: type: ClusterIP port: 80 @@ -171,7 +171,7 @@ doc_incore: replicas: 1 image: repository: doc/incore - tag: 4.8.1 + tag: 4.8.2 service: type: ClusterIP port: 80 @@ -183,7 +183,7 @@ doc_pyincore: replicas: 1 image: repository: doc/pyincore - tag: 1.15.1 + tag: 1.16.0 service: type: ClusterIP port: 80 @@ -195,7 +195,7 @@ doc_pyincore_viz: replicas: 1 image: repository: doc/pyincore-viz - tag: 1.9.0 + tag: 1.10.0 service: type: ClusterIP port: 80 @@ -207,7 +207,7 @@ doc_pyincore_data: replicas: 1 image: repository: doc/pyincore-data - tag: 0.6.1 + tag: 0.6.2 service: type: ClusterIP port: 80 @@ -219,7 +219,7 @@ doc_api: replicas: 1 image: repository: doc/api - tag: v4.8.1 + tag: v4.8.2 service: type: ClusterIP port: 80 @@ -232,7 +232,7 @@ svc_data: repo: /home/incore/data/ image: repository: data-jetty - tag: 1.23.0 + tag: 1.24.0 service: type: ClusterIP port: 8888 @@ -258,7 +258,7 @@ svc_dfr3: replicas: 4 image: repository: dfr3-jetty - tag: 1.23.0 + tag: 1.24.0 service: type: ClusterIP port: 8888 @@ -281,7 +281,7 @@ svc_hazard: replicas: 4 image: repository: hazard-jetty - tag: 1.23.0 + tag: 1.24.0 service: type: ClusterIP port: 8888 @@ -304,7 +304,7 @@ svc_space: replicas: 2 image: repository: space-jetty - tag: 1.23.0 + tag: 1.24.0 service: type: ClusterIP port: 8888 @@ -327,7 +327,7 @@ svc_sema: replicas: 1 image: repository: semantics-jetty - tag: 1.23.0 + tag: 1.24.0 service: type: ClusterIP port: 8888 From ca386b97cacdde6a88fcfd08ab2c1b6c2214dbf7 Mon Sep 17 00:00:00 2001 From: Ya-Lan Yang Date: Wed, 7 Feb 2024 04:07:30 +0800 Subject: [PATCH 3/3] fix --- Chart.yaml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index a866bd0..c1ea36e 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -13,7 +13,7 @@ version: 1.23.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 # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 4.8.2 +appVersion: 5.0.0 # List of people that maintain this helm chart. maintainers: @@ -47,6 +47,6 @@ annotations: - name: Helm Chart url: https://github.com/IN-CORE/incore-helm artifacthub.io/changes: | - - IN-CORE release 4.8.2 + - IN-CORE release 5.0.0 - Added MONGODB_URI to auth deployment diff --git a/README.md b/README.md index 5473059..7e87fd6 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ For an example of using existing PVC, see the file [incore-pvc.yaml](incore-pvc. ## ChangeLog ### 1.23.0 -- IN-CORE release 4.8.2 +- IN-CORE release 5.0.0 - Added MONGODB_URI to auth deployment ### 1.22.1