File tree Expand file tree Collapse file tree 5 files changed +22
-24
lines changed Expand file tree Collapse file tree 5 files changed +22
-24
lines changed Original file line number Diff line number Diff line change 1
1
dependencies:
2
2
- name: common
3
3
repository: oci://registry-1.docker.io/cloudpirates
4
- version: 1.0.0
5
- digest: sha256:4dc4489391e65614af4cd64d56a213e353a7a70b231faf64c584779774304d96
6
- generated: "2025-08-14T12:32:38.1323 +02:00"
4
+ version: 1.1.1
5
+ digest: sha256:8da3c04e2c4a1ebfff4f21936399938e0f3fcf9fbd2f7135e7e907ce725b8f00
6
+ generated: "2025-09-29T21:42:58.149716 +02:00"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : postgres
3
3
description : The World's Most Advanced Open Source Relational Database
4
4
type : application
5
- version : 0.6.1
5
+ version : 0.7.0
6
6
appVersion : " 18.0"
7
7
keywords :
8
8
- postgres
Original file line number Diff line number Diff line change @@ -96,15 +96,15 @@ The following table lists the configurable parameters of the PostgreSQL chart an
96
96
97
97
### Security Context
98
98
99
- | Parameter | Description | Default |
100
- | ------------------------------------------ | ------------------------------------------------- | --------- |
101
- | ` podSecurityContext.fsGroup ` | Group ID for the volumes of the pod | ` 999 ` |
102
- | ` securityContext .allowPrivilegeEscalation` | Enable container privilege escalation | ` false ` |
103
- | ` securityContext .runAsNonRoot` | Configure the container to run as a non-root user | ` true ` |
104
- | ` securityContext .runAsUser` | User ID for the PostgreSQL container | ` 999 ` |
105
- | ` securityContext .runAsGroup` | Group ID for the PostgreSQL container | ` 999 ` |
106
- | ` securityContext .readOnlyRootFilesystem` | Mount container root filesystem as read-only | ` false ` |
107
- | ` securityContext .capabilities.drop` | Linux capabilities to be dropped | ` ["ALL"] ` |
99
+ | Parameter | Description | Default |
100
+ | --------------------------------------------------- | ------------------------------------------------- | --------- |
101
+ | ` podSecurityContext.fsGroup ` | Group ID for the volumes of the pod | ` 999 ` |
102
+ | ` containerSecurityContext .allowPrivilegeEscalation` | Enable container privilege escalation | ` false ` |
103
+ | ` containerSecurityContext .runAsNonRoot` | Configure the container to run as a non-root user | ` true ` |
104
+ | ` containerSecurityContext .runAsUser` | User ID for the PostgreSQL container | ` 999 ` |
105
+ | ` containerSecurityContext .runAsGroup` | Group ID for the PostgreSQL container | ` 999 ` |
106
+ | ` containerSecurityContext .readOnlyRootFilesystem` | Mount container root filesystem as read-only | ` false ` |
107
+ | ` containerSecurityContext .capabilities.drop` | Linux capabilities to be dropped | ` ["ALL"] ` |
108
108
109
109
### PostgreSQL Authentication
110
110
Original file line number Diff line number Diff line change @@ -34,12 +34,10 @@ spec:
34
34
{{- with (include "postgres.imagePullSecrets" .) }}
35
35
{{ . | nindent 6 }}
36
36
{{- end }}
37
- securityContext :
38
- {{- toYaml .Values.podSecurityContext | nindent 8 }}
37
+ securityContext : {{ include "common.renderPodSecurityContext" . | nindent 8 }}
39
38
containers :
40
39
- name : {{ .Chart.Name }}
41
- securityContext :
42
- {{- toYaml .Values.securityContext | nindent 12 }}
40
+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
43
41
image : {{ include "postgres.image" . }}
44
42
imagePullPolicy : {{ .Values.image.imagePullPolicy }}
45
43
args :
Original file line number Diff line number Diff line change @@ -41,18 +41,18 @@ podSecurityContext:
41
41
# # @param podSecurityContext.fsGroup Group ID for the volumes of the pod
42
42
fsGroup : 999
43
43
44
- securityContext :
45
- # # @param securityContext .allowPrivilegeEscalation Enable container privilege escalation
44
+ containerSecurityContext :
45
+ # # @param containerSecurityContext .allowPrivilegeEscalation Enable container privilege escalation
46
46
allowPrivilegeEscalation : false
47
- # # @param securityContext .runAsNonRoot Configure the container to run as a non-root user
47
+ # # @param containerSecurityContext .runAsNonRoot Configure the container to run as a non-root user
48
48
runAsNonRoot : true
49
- # # @param securityContext .runAsUser User ID for the PostgreSQL container
49
+ # # @param containerSecurityContext .runAsUser User ID for the PostgreSQL container
50
50
runAsUser : 999
51
- # # @param securityContext .runAsGroup Group ID for the PostgreSQL container
51
+ # # @param containerSecurityContext .runAsGroup Group ID for the PostgreSQL container
52
52
runAsGroup : 999
53
- # # @param securityContext .readOnlyRootFilesystem Mount container root filesystem as read-only
53
+ # # @param containerSecurityContext .readOnlyRootFilesystem Mount container root filesystem as read-only
54
54
readOnlyRootFilesystem : false
55
- # # @param securityContext .capabilities.drop Linux capabilities to be dropped
55
+ # # @param containerSecurityContext .capabilities.drop Linux capabilities to be dropped
56
56
capabilities :
57
57
drop :
58
58
- ALL
You can’t perform that action at this time.
0 commit comments