diff --git a/CHANGELOG.md b/CHANGELOG.md
index 710ed44c80ce06848ff4193ef28933f3b8c20bdf..13c5bc99815b00f4da6a85269dce01a897df6c31 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [0.14.1] - 2022-10-20
+
+* Removes default passwords in values.yaml and values-local.yaml.example
+
 ## [0.14.0] - 2022-10-18
 
 * Fix helm test when you try to use ssoLogin
diff --git a/Chart.yaml b/Chart.yaml
index 56f69b28cb01941933a1eccbe3d2d99e477c97f1..aa5d802c7e7049c1a8c917b6cdf0d74690e7a91a 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -4,7 +4,7 @@ description: |
   A helm chart for installing NextCloud and setting up ONLYOFFICE integration
 name: nextcloud-onlyoffice
 appVersion: NC-24.0.5-OO-7.2.0.204
-version: 0.14.0
+version: 0.14.1
 icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
 dependencies:
   # https://artifacthub.io/packages/helm/nextcloud/nextcloud
diff --git a/README.md b/README.md
index b5354d8a8a7633b6697aba90fc335e2c1d478ca2..cccdcf1db0c4290a44b1666dfc17372714d89fa2 100644
--- a/README.md
+++ b/README.md
@@ -22,11 +22,13 @@ configurations you might want to do. These instructions assume you copy
 secrets variables manually when you run helm install:
 
 - `nextcloud.nextcloud.password`
-- `nextcloud.mariadb.db.password`
-- `nextcloud.mariadb.rootUser.password`
+- `nextcloud.mariadb.auth.password`
+- `nextcloud.mariadb.auth.rootPassword`
+- `redis.auth.password`
 - `onlyoffice.jwtSecret`
-- `onlyoffice.database.password`
-- `rabbitmq.rabbitmq.password`
+- `rabbitmq.auth.password`
+- `rabbitmq.auth.erlangCookie`
+- `global.onlyofficeDb.password`
 
 ### Install from the remote repo
 
diff --git a/values-local.yaml.example b/values-local.yaml.example
index e6d81bd1e92ee30b53c71e39299f515e4f78140c..6d61cad947be26e71657622cbfa5081df883b507 100644
--- a/values-local.yaml.example
+++ b/values-local.yaml.example
@@ -1,7 +1,7 @@
 nextcloud:
   nextcloud:
     host: "files.your.domain"
-    password: CHANGE_ME
+    # password: CHANGE_ME
 
   ingress:
     enabled: true
@@ -19,8 +19,8 @@ nextcloud:
   # Configure MariaDB chart
   mariadb:
     auth:
-      password: CHANGE_ME
-      rootPassword: CHANGE_ME
+      # password: CHANGE_ME
+      # rootPassword: CHANGE_ME
     architecture: standalone
     # Enable persistence
     # primary:
@@ -31,7 +31,7 @@ nextcloud:
   redis:
     auth:
       # Shared redis password for Nextcloud and OnlyOffice
-      password: CHANGE_ME
+      # password: CHANGE_ME
 
   # Creates a kubernetes cronJob object that runs nextcloud's cron.php
   # every 5 minutes (*/5 * * * *)
@@ -44,11 +44,11 @@ nextcloud:
 
 global:
   onlyofficeDb:
-    password: CHANGE_ME
+    # password: CHANGE_ME
 
 onlyoffice:
   server_name: "office.your.domain"
-  jwtSecret: CHANGE_ME
+  # jwtSecret: CHANGE_ME
   ingress:
     enabled: true
     annotations:
@@ -63,7 +63,7 @@ onlyoffice:
 
 rabbitmq:
   auth:
-    password: CHANGE_ME
+    # password: CHANGE_ME
 
 # apps controls which apps will be installed and enabled in nextcloud
 # apps:
diff --git a/values.yaml b/values.yaml
index e73770c346bde7ae7878f2595f3a0ec84c454291..361d8a415f2cfcaa31d6999ce019e29f77947ff7 100644
--- a/values.yaml
+++ b/values.yaml
@@ -68,7 +68,7 @@ global:
     name: onlyoffice
     port: 3306
     user: onlyoffice
-    # password:
+    # password: password
 
 
 onlyoffice:
@@ -76,7 +76,7 @@ onlyoffice:
 
   replicaCount: 1
 
-  jwtSecret: secret
+  # jwtSecret: secret
 
   # Enable font generation during startup.
   # This takes a long time and is not needed if you don't provide custom
@@ -195,8 +195,8 @@ onlyoffice:
 
 rabbitmq:
   auth:
-    password: password
-    erlangCookie: stub
+    # password: password
+    # erlangCookie: stub
 
 sociallogin:
   update_profile_on_login: 1