Skip to content

Commit

Permalink
Merge pull request #198 from IN-CORE/release-1.32.1
Browse files Browse the repository at this point in the history
Release 1.32.1
  • Loading branch information
ywkim312 authored Nov 4, 2024
2 parents 4251096 + 8db58b1 commit 00cd9f3
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.32.1 - 2024-11-04
- Add extra variables for datawolf
- Changed new user alert cron job schedule to central time

## 1.32.0 - 2024-10-23
- Project service has been added
- Add additional service urls to the environment variablees of project service
Expand Down
10 changes: 5 additions & 5 deletions Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: keycloak
repository: https://charts.bitnami.com/bitnami
version: 21.4.4
version: 21.8.0
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 15.5.11
version: 15.5.38
- name: mongodb
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
version: 9.3.1
- name: datawolf
repository: https://opensource.ncsa.illinois.edu/charts
version: 1.0.1
digest: sha256:43ab1ae31f447de80b9a3edaa6bbdec2b4335d375781d049fc5ee4e005857fc5
generated: "2024-06-26T13:25:35.1988004-05:00"
version: 1.1.0
digest: sha256:127ffce91fd64e1f70c326fa8a8c013b09a1cd9a4dd8ed05db15244ff644f0cb
generated: "2024-11-01T14:20:27.979116-05:00"
12 changes: 6 additions & 6 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.32.0
version: 1.32.1

# 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: 5.5.0
appVersion: 5.5.1

# List of people that maintain this helm chart.
maintainers:
Expand Down Expand Up @@ -47,7 +47,7 @@ annotations:
- name: Helm Chart
url: https://github.com/IN-CORE/incore-helm
artifacthub.io/changes: |
- Project service has been added
- Add additional service urls to the environment variables of project service
- Add cronjob for alerting new user registration
- IN-CORE release 5.5.0
- Add extra variables for datawolf
- Changed new user alert cron job schedule to central time
- IN-CORE release 5.5.1
2 changes: 1 addition & 1 deletion templates/cronjobs/keycloak-new-user-alert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "incore.labels" . | nindent 4 }}
spec:
schedule: "0 8,16 * * 1-5" # Runs at 8 AM and 4 PM, Monday to Friday
schedule: "0 5,13 * * 1-5" # Runs at 8 AM and 4 PM, Monday to Friday
startingDeadlineSeconds: 3600
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 1
Expand Down
30 changes: 21 additions & 9 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ doc_pyincore:
replicas: 1
image:
repository: doc/pyincore
tag: 1.20.0
tag: v1.20.1
service:
type: ClusterIP
port: 80
Expand All @@ -203,7 +203,7 @@ doc_pyincore_viz:
replicas: 1
image:
repository: doc/pyincore-viz
tag: 1.11.0
tag: v1.11.0
service:
type: ClusterIP
port: 80
Expand All @@ -215,7 +215,7 @@ doc_pyincore_data:
replicas: 1
image:
repository: doc/pyincore-data
tag: 0.7.0
tag: v0.7.0
service:
type: ClusterIP
port: 80
Expand All @@ -240,7 +240,7 @@ svc_data:
repo: /home/incore/data/
image:
repository: data-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand All @@ -266,7 +266,7 @@ svc_dfr3:
replicas: 1
image:
repository: dfr3-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand All @@ -289,7 +289,7 @@ svc_hazard:
replicas: 1
image:
repository: hazard-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand All @@ -312,7 +312,7 @@ svc_space:
replicas: 1
image:
repository: space-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand All @@ -335,7 +335,7 @@ svc_sema:
replicas: 1
image:
repository: semantics-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand All @@ -358,7 +358,7 @@ svc_project:
replicas: 1
image:
repository: project-jetty
tag: 1.27.0
tag: 1.27.1
service:
type: ClusterIP
port: 8888
Expand Down Expand Up @@ -485,6 +485,18 @@ datawolf:
postgresqlPassword: datawolf
postgresqlDatabase: database

extraEnvVars:
- name: DATASET_DAO
value: "edu.illinois.ncsa.incore.dao.IncoreDatasetDao"
- name: INCORE_SERVER
value: "http://incore-svc-data:8888"
- name: INCORE_GROUP
value: "incore_user"
- name: FILE_STORAGE
value: "edu.illinois.ncsa.incore.impl.IncoreFileStorage"
- name: INCORE_USER
value: "incrtest"

ingress:
enabled: false

Expand Down

0 comments on commit 00cd9f3

Please sign in to comment.