-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from opf/changeset-release/main
Release Tracking
- Loading branch information
Showing
5 changed files
with
38 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,14 @@ jobs: | |
echo "changed=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Run chart-testing (lint) | ||
- name: Run chart-testing (lint) WITHOUT version check | ||
if: github.event.pull_request.title != 'Release Tracking' | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false | ||
|
||
- name: Run chart-testing (lint) WITH version check | ||
if: github.event.pull_request.title == 'Release Tracking' | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=true | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# @openproject/helm-charts | ||
|
||
## 3.0.0 | ||
|
||
### Major Changes | ||
|
||
- 0a1c9a9: | ||
- rename `securityContext` to `containerSecurityContext` in `values.yaml` | ||
- mount volumes for tmp directories to make containers work in accordance with best practices, that is with read-only file systems | ||
- use secure defaults for container security policy | ||
|
||
## 2.7.0 | ||
|
||
### Minor Changes | ||
|
||
- acf0e41: Allow OIDC attribute mapping in values | ||
- acf0e41: Allow OIDC attribute mapping in values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
--- | ||
apiVersion: "v2" | ||
name: "openproject" | ||
description: "A Helm chart for running OpenProject via Kubernetes" | ||
home: "https://www.openproject.org/" | ||
icon: "https://www.openproject.org/assets/images/press/openproject-icon-original-color-41055eb6.png" | ||
type: "application" | ||
appVersion: "13" | ||
version: "2.7.0" | ||
apiVersion: v2 | ||
name: openproject | ||
description: A Helm chart for running OpenProject via Kubernetes | ||
home: https://www.openproject.org/ | ||
icon: https://www.openproject.org/assets/images/press/openproject-icon-original-color-41055eb6.png | ||
type: application | ||
appVersion: '13' | ||
version: 3.0.0 | ||
maintainers: | ||
- name: OpenProject | ||
url: https://github.com/opf/helm-charts | ||
- name: OpenProject | ||
url: https://github.com/opf/helm-charts | ||
dependencies: | ||
- name: "postgresql" | ||
repository: "https://charts.bitnami.com/bitnami" | ||
version: "^12.1.6" | ||
condition: "postgresql.bundled" | ||
- name: "memcached" | ||
repository: "https://charts.bitnami.com/bitnami" | ||
condition: "memcached.bundled" | ||
version: "^6.3.2" | ||
- name: "common" | ||
repository: "https://charts.bitnami.com/bitnami" | ||
version: "^2.2.2" | ||
... | ||
- name: postgresql | ||
repository: https://charts.bitnami.com/bitnami | ||
version: "^12.1.6" | ||
condition: postgresql.bundled | ||
- name: memcached | ||
repository: https://charts.bitnami.com/bitnami | ||
condition: memcached.bundled | ||
version: "^6.3.2" | ||
- name: common | ||
repository: https://charts.bitnami.com/bitnami | ||
version: "^2.2.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters