Skip to content

Commit

Permalink
Release 2.3.0 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonkopliku authored May 13, 2024
1 parent 88411c3 commit 0582a60
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 10 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [2.3.0](https://github.com/trento-project/helm-charts/tree/2.3.0) (2024-05-13)

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

### Added

- Add v3 checks path to the ingress configuration [\#93](https://github.com/trento-project/helm-charts/pull/93) (@arbulu89)
- Postgres database creation with INIT containers [\#91](https://github.com/trento-project/helm-charts/pull/91) (@CDimonaco)
- Add option to disable charts [\#89](https://github.com/trento-project/helm-charts/pull/89) (@arbulu89)

### Fixed

- Add wanda v2 apis in ingress [\#84](https://github.com/trento-project/helm-charts/pull/84) (@nelsonkopliku)

### Removed

- Remove grafana [\#88](https://github.com/trento-project/helm-charts/pull/88) (@arbulu89)

### Other Changes

- Update license to the year 2024 [\#92](https://github.com/trento-project/helm-charts/pull/92) (@EMaksy)
- Update LICENSE [\#90](https://github.com/trento-project/helm-charts/pull/90) (@stefanotorresi)

## [2.2.0](https://github.com/trento-project/helm-charts/tree/2.2.0) (2023-11-14)

[Full Changelog](https://github.com/trento-project/helm-charts/compare/2.1.0...2.2.0)
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.2.1
#!BuildTag: trento/trento-server:2.2.1-build%RELEASE%
#!BuildTag: trento/trento-server:2.3.0
#!BuildTag: trento/trento-server:2.3.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.2.1-dev5
version: 2.3.0

dependencies:
- name: trento-web
Expand Down
2 changes: 1 addition & 1 deletion charts/trento-server/charts/trento-wanda/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: 1.2.1-dev3
version: 1.3.0
2 changes: 1 addition & 1 deletion charts/trento-server/charts/trento-wanda/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ replicaCount: 1
image:
repository: ghcr.io/trento-project/trento-wanda
pullPolicy: IfNotPresent
tag: 1.2.0
tag: 1.3.0

imagePullSecrets: []
nameOverride: ""
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.2.1-dev4
version: 2.3.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 @@ -32,7 +32,7 @@ replicaCount: 1
image:
repository: ghcr.io/trento-project/trento-web
pullPolicy: IfNotPresent
tag: 2.2.0
tag: 2.3.0

imagePullSecrets: []
nameOverride: ""
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.2.0"}
TRENTO_WEB_VERSION=${TRENTO_WEB_VERSION:-"2.2.0"}
TRENTO_WANDA_VERSION=${TRENTO_WANDA_VERSION:-"1.2.0"}
TRENTO_SERVER_CHART_VERSION=${TRENTO_SERVER_CHART_VERSION:-"2.3.0"}
TRENTO_WEB_VERSION=${TRENTO_WEB_VERSION:-"2.3.0"}
TRENTO_WANDA_VERSION=${TRENTO_WANDA_VERSION:-"1.3.0"}
TRENTO_ROLLING_VERSION=${TRENTO_ROLLING_VERSION:-"rolling"}

usage() {
Expand Down

0 comments on commit 0582a60

Please sign in to comment.