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 @@
-![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: