diff --git a/charts/postgres/Chart.yaml b/charts/postgres/Chart.yaml
index 4e75ae15e547586dba031c6804f38905c56b4d66..4488cb9111a6f4390f9c826e00c3d6d1ef7283a1 100644
--- a/charts/postgres/Chart.yaml
+++ b/charts/postgres/Chart.yaml
@@ -6,7 +6,13 @@ type: application
 
 maintainers:
   - name: groundhog2k
+    url: https://github.com/groundhog2k/helm-charts
 
-version: "1.4.0"
+keywords:
+  - database
+  - postgres
 
-appVersion: "16.2"
+version: "1.0.1"
+
+appVersion: "12.8"
+icon: https://www.postgresql.org/media/img/about/press/elephant64.png
diff --git a/charts/postgres/RELEASENOTES.md b/charts/postgres/RELEASENOTES.md
index 6e87980f7c9bcc0b61341357e05f14ca5038e9f0..f4c5d2e8804cb40ac9503ddc22197adfb2c177f4 100644
--- a/charts/postgres/RELEASENOTES.md
+++ b/charts/postgres/RELEASENOTES.md
@@ -45,6 +45,7 @@
 | 0.5.2 | 16.1 | Added support for network policies and additional labels and annotations |
 | 0.5.3 | 16.2 | Upgraded to Postgres 16.2 |
 | 1.0.0 | 12.8 | Final version with configuration secret, extra config and extra volume support |
+| 1.0.1 | 12.8 | Fixed missing envFrom |
 | 1.1.0 | 13.14 | Final version with configuration secret, extra config and extra volume support |
 | 1.2.0 | 14.11 | Final version with configuration secret, extra config and extra volume support |
 | 1.3.0 | 15.6 | Final version with configuration secret, extra config and extra volume support |
diff --git a/charts/postgres/templates/statefulset.yaml b/charts/postgres/templates/statefulset.yaml
index d82c569c3f98a77e7469f40a3bf4b3d9c2a3fe52..d688850b5ec876dde9d6abd8e65339f45de09c18 100644
--- a/charts/postgres/templates/statefulset.yaml
+++ b/charts/postgres/templates/statefulset.yaml
@@ -152,6 +152,7 @@ spec:
             {{- toYaml . | nindent 12 }}
           {{- end }}
           {{- range .Values.extraEnvSecrets }}
+          envFrom:
             - secretRef:
                 name: {{ . }}
           {{- end }}