From fe5a5f0f73e0499e78731b524b2c60dab9a4e28a Mon Sep 17 00:00:00 2001 From: Daniel Del Rio Figueira Date: Wed, 13 Nov 2024 14:49:42 +0100 Subject: [PATCH] Bump version to 1.3.0 --- CHANGELOG.md | 8 +++++++- Chart.yaml | 2 +- README.md | 21 ++++++++++++++++++++- README.md.gotmpl | 19 +++++++++++++++++++ 4 files changed, 47 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79cb1bc..d6248ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased](https://github.com/passbolt/charts-passbolt/compare/1.2.0...HEAD) +## [Unreleased](https://github.com/passbolt/charts-passbolt/compare/1.3.0...HEAD) + +## [1.3.0] - 2024-11-13 + +### Added + +- Added non-root image support ## [1.2.0] - 2024-10-30 diff --git a/Chart.yaml b/Chart.yaml index f9b29df..37255f6 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -16,7 +16,7 @@ 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.0 +version: 1.3.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 diff --git a/README.md b/README.md index e75911d..db4bb4e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ passbolt sails kubernetes -![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.9.1-1-ce](https://img.shields.io/badge/AppVersion-4.9.1--1--ce-informational?style=flat-square) +![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.9.1-1-ce](https://img.shields.io/badge/AppVersion-4.9.1--1--ce-informational?style=flat-square) Passbolt is an open source, security first password manager with strong focus on collaboration. @@ -74,6 +74,25 @@ helm install my-release my-repo The above command deploys passbolt with default settings on your kubernetes cluster. Check the [configuration](#Configuration) section to check which parameters you can fine tune. +## Use passbolt non-root image + +In case you want to use the non-root passbolt image, there are a few changes that you have to introduce on your values file: + +```bash +app: + image: + tag: + +service: + ports: + https: + targetPort: 4433 + http: + targetPort: 8080 +``` + +With these changes you should be able to run passbolt on a container executed by www-data user. + ## Creating first user Once the chart is deployed, you can create your first user by running the following command: diff --git a/README.md.gotmpl b/README.md.gotmpl index a59b221..7a33da8 100644 --- a/README.md.gotmpl +++ b/README.md.gotmpl @@ -74,6 +74,25 @@ helm install my-release my-repo The above command deploys passbolt with default settings on your kubernetes cluster. Check the [configuration](#Configuration) section to check which parameters you can fine tune. +## Use passbolt non-root image + +In case you want to use the non-root passbolt image, there are a few changes that you have to introduce on your values file: + +```bash +app: + image: + tag: + +service: + ports: + https: + targetPort: 4433 + http: + targetPort: 8080 +``` + +With these changes you should be able to run passbolt on a container executed by www-data user. + ## Creating first user Once the chart is deployed, you can create your first user by running the following command: