Skip to content

Commit

Permalink
Release 2.4.0 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
balanza authored Nov 12, 2024
1 parent b20e2c2 commit af23aab
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 9 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [2.4.0](https://github.com/trento-project/helm-charts/tree/2.4.0) (2024-11-12)

[Full Changelog](https://github.com/trento-project/helm-charts/compare/2.3.2...2.4.0)

### Added

- Fix typo in variable usage [\#113](https://github.com/trento-project/helm-charts/pull/113) (@arbulu89)
- Make secret key base configurable [\#112](https://github.com/trento-project/helm-charts/pull/112) (@arbulu89)
- Add SAML integration [\#106](https://github.com/trento-project/helm-charts/pull/106) (@arbulu89)
- Add OAUTH2 usage [\#105](https://github.com/trento-project/helm-charts/pull/105) (@arbulu89)
- Add an argument to the install script for username [\#100](https://github.com/trento-project/helm-charts/pull/100) (@bear454)

### Other Changes

- Change saml.spDir default location [\#115](https://github.com/trento-project/helm-charts/pull/115) (@arbulu89)
- Update values-overwrite.yaml [\#111](https://github.com/trento-project/helm-charts/pull/111) (@dottorblaster)
- Fix checks image tag [\#109](https://github.com/trento-project/helm-charts/pull/109) (@dottorblaster)
- make version check less brittle and more relaxed [\#108](https://github.com/trento-project/helm-charts/pull/108) (@stefanotorresi)
- remove support script [\#107](https://github.com/trento-project/helm-charts/pull/107) (@stefanotorresi)
- Add init-container for checks deployment [\#104](https://github.com/trento-project/helm-charts/pull/104) (@janvhs)
- Add OIDC usage [\#103](https://github.com/trento-project/helm-charts/pull/103) (@arbulu89)
- Bump actions/upload-artifact from 3 to 4 [\#87](https://github.com/trento-project/helm-charts/pull/87) (@dependabot[bot])
- Bump actions/download-artifact from 3 to 4 [\#86](https://github.com/trento-project/helm-charts/pull/86) (@dependabot[bot])
- Bump helm/chart-testing-action from 2.6.0 to 2.6.1 [\#81](https://github.com/trento-project/helm-charts/pull/81) (@dependabot[bot])

## [2.3.2](https://github.com/trento-project/helm-charts/tree/2.3.2) (2024-07-24)

[Full Changelog](https://github.com/trento-project/helm-charts/compare/2.3.1...2.3.2)
Expand Down
6 changes: 3 additions & 3 deletions charts/trento-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# SPDX-License-Identifier: Apache-2.0
#!BuildTag: trento/trento-server:2.3.3-dev2
#!BuildTag: trento/trento-server:2.3.3-dev2-build%RELEASE%
#!BuildTag: trento/trento-server:2.4.0
#!BuildTag: trento/trento-server:2.4.0-build%RELEASE%
apiVersion: v2
name: trento-server
description: The trento server chart contains all the components necessary to run a Trento server.
type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates
version: 2.3.3-dev9
version: 2.4.0

dependencies:
- name: trento-web
Expand Down
2 changes: 1 addition & 1 deletion charts/trento-server/charts/trento-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ 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: 2.3.3-dev6
version: 2.4.0
2 changes: 1 addition & 1 deletion charts/trento-server/charts/trento-web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ replicaCount: 1
image:
repository: ghcr.io/trento-project/trento-web
pullPolicy: IfNotPresent
tag: 2.3.2
tag: 2.4.0

secretKeyBase: ""
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion charts/trento-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ trento-wanda:
image:
repository: ghcr.io/trento-project/checks
pullPolicy: IfNotPresent
tag: 0.2.0
tag: 1.0.0

postgresql:
enabled: true
Expand Down
6 changes: 3 additions & 3 deletions scripts/install-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -e

readonly ARGS=("$@")
readonly PROGNAME="./install-server.sh"
TRENTO_SERVER_CHART_VERSION=${TRENTO_SERVER_CHART_VERSION:-"2.3.2"}
TRENTO_WEB_VERSION=${TRENTO_WEB_VERSION:-"2.3.2"}
TRENTO_WANDA_VERSION=${TRENTO_WANDA_VERSION:-"1.3.0"}
TRENTO_SERVER_CHART_VERSION=${TRENTO_SERVER_CHART_VERSION:-"2.4.0"}
TRENTO_WEB_VERSION=${TRENTO_WEB_VERSION:-"2.4.0"}
TRENTO_WANDA_VERSION=${TRENTO_WANDA_VERSION:-"1.4.0"}
TRENTO_ROLLING_VERSION=${TRENTO_ROLLING_VERSION:-"rolling"}

usage() {
Expand Down

0 comments on commit af23aab

Please sign in to comment.