File tree Expand file tree Collapse file tree 5 files changed +19
-21
lines changed Expand file tree Collapse file tree 5 files changed +19
-21
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:33.889806 +02:00"
4
+ version: 1.1.1
5
+ digest: sha256:8da3c04e2c4a1ebfff4f21936399938e0f3fcf9fbd2f7135e7e907ce725b8f00
6
+ generated: "2025-10-01T22:07:26.882147 +02:00"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : minio
3
3
description : High Performance Object Storage compatible with Amazon S3 APIs
4
4
type : application
5
- version : 0.2.4
5
+ version : 0.3.0
6
6
appVersion : " 2025.09.07"
7
7
keywords :
8
8
- minio
Original file line number Diff line number Diff line change @@ -133,12 +133,12 @@ The following table lists the configurable parameters of the MinIO chart and the
133
133
| Parameter | Description | Default |
134
134
| ------------------------------------------ | ------------------------------------------------- | --------- |
135
135
| ` podSecurityContext.fsGroup ` | Group ID for the volumes of the pod | ` 1000 ` |
136
- | ` securityContext .allowPrivilegeEscalation` | Enable container privilege escalation | ` false ` |
137
- | ` securityContext .runAsNonRoot` | Configure the container to run as a non-root user | ` true ` |
138
- | ` securityContext .runAsUser` | User ID for the MinIO container | ` 1000 ` |
139
- | ` securityContext .runAsGroup` | Group ID for the MinIO container | ` 1000 ` |
140
- | ` securityContext .readOnlyRootFilesystem` | Mount container root filesystem as read-only | ` true ` |
141
- | ` securityContext .capabilities.drop` | Linux capabilities to be dropped | ` ["ALL"] ` |
136
+ | ` containerSecurityContext .allowPrivilegeEscalation` | Enable container privilege escalation | ` false ` |
137
+ | ` containerSecurityContext .runAsNonRoot` | Configure the container to run as a non-root user | ` true ` |
138
+ | ` containerSecurityContext .runAsUser` | User ID for the MinIO container | ` 1000 ` |
139
+ | ` containerSecurityContext .runAsGroup` | Group ID for the MinIO container | ` 1000 ` |
140
+ | ` containerSecurityContext .readOnlyRootFilesystem` | Mount container root filesystem as read-only | ` true ` |
141
+ | ` containerSecurityContext .capabilities.drop` | Linux capabilities to be dropped | ` ["ALL"] ` |
142
142
143
143
### Service configuration
144
144
Original file line number Diff line number Diff line change @@ -32,12 +32,10 @@ spec:
32
32
{{- with (include "minio.imagePullSecrets" .) }}
33
33
{{ . | nindent 6 }}
34
34
{{- end }}
35
- securityContext :
36
- {{- toYaml .Values.podSecurityContext | nindent 8 }}
35
+ securityContext : {{ include "common.renderPodSecurityContext" . | nindent 8 }}
37
36
containers :
38
37
- name : {{ .Chart.Name }}
39
- securityContext :
40
- {{- toYaml .Values.securityContext | nindent 12 }}
38
+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
41
39
image : {{ include "minio.image" . }}
42
40
imagePullPolicy : {{ .Values.image.imagePullPolicy }}
43
41
command : ["/bin/sh"]
Original file line number Diff line number Diff line change @@ -85,18 +85,18 @@ podSecurityContext:
85
85
# # @param podSecurityContext.fsGroup Group ID for the volumes of the pod
86
86
fsGroup : 1001
87
87
88
- securityContext :
89
- # # @param securityContext .allowPrivilegeEscalation Enable container privilege escalation
88
+ containerSecurityContext :
89
+ # # @param containerSecurityContext .allowPrivilegeEscalation Enable container privilege escalation
90
90
allowPrivilegeEscalation : false
91
- # # @param securityContext .runAsNonRoot Configure the container to run as a non-root user
91
+ # # @param containerSecurityContext .runAsNonRoot Configure the container to run as a non-root user
92
92
runAsNonRoot : true
93
- # # @param securityContext .runAsUser User ID for the MinIO container
93
+ # # @param containerSecurityContext .runAsUser User ID for the MinIO container
94
94
runAsUser : 1001
95
- # # @param securityContext .runAsGroup Group ID for the MinIO container
95
+ # # @param containerSecurityContext .runAsGroup Group ID for the MinIO container
96
96
runAsGroup : 1001
97
- # # @param securityContext .readOnlyRootFilesystem Mount container root filesystem as read-only
97
+ # # @param containerSecurityContext .readOnlyRootFilesystem Mount container root filesystem as read-only
98
98
readOnlyRootFilesystem : true
99
- # # @param securityContext .capabilities.drop Linux capabilities to be dropped
99
+ # # @param containerSecurityContext .capabilities.drop Linux capabilities to be dropped
100
100
capabilities :
101
101
drop :
102
102
- ALL
You can’t perform that action at this time.
0 commit comments