Skip to content

Commit

Permalink
update mongodb and minio
Browse files Browse the repository at this point in the history
  • Loading branch information
ypoplavs committed Nov 10, 2024
1 parent c6690d9 commit 52eefe8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/testkube-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies:
version: 1.2.6-2
repository: "file://./charts/nats"
- name: minio
version: 14.7.0
version: 14.8.3-1
repository: https://charts.bitnami.com/bitnami
condition: minio.enabled
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/testkube-enterprise/charts/minio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: minio
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/minio
version: 14.8.3
version: 14.8.3-1
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ spec:
{{- if .Values.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.podSecurityContext.enabled }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.podSecurityContext "context" $) | nindent 8 }}
{{- if .Values.podSecurityContext.enabled .Values.global.podSecurityContext }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" (or .Values.global.podSecurityContext .Values.podSecurityContext) "context" $) | nindent 8 -}}
{{- end }}
{{- if .Values.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
Expand Down Expand Up @@ -103,8 +103,8 @@ spec:
- name: minio
image: {{ include "minio.image" . }}
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
{{- if .Values.containerSecurityContext.enabled }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.containerSecurityContext "context" $) | nindent 12 }}
{{- if or .Values.tls.securityContext .Values.global.containerSecurityContext }}
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" (or .Values.global.containerSecurityContext .Values.tls.securityContext) "context" $) | nindent 12 -}}
{{- end }}
{{- if .Values.command }}
command: {{- include "common.tplvalues.render" (dict "value" .Values.command "context" $) | nindent 12 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/testkube-enterprise/charts/minio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
## @param global.containerSecurityContext Global Security Container Context
## @param global.podSecurityContext Global Pod Container Context
##
global:
imageRegistry: ""
Expand All @@ -29,6 +31,8 @@ global:
## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
##
adaptSecurityContext: auto
containerSecurityContext: {}
podSecurityContext: {}
## @section Common parameters

## @param nameOverride String to partially override common.names.fullname template (will maintain the release name)
Expand Down
2 changes: 2 additions & 0 deletions charts/testkube-enterprise/charts/mongodb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
## @param global.namespaceOverride Override the namespace for resource deployed by the chart, but can itself be overridden by the local namespaceOverride
## @param global.containerSecurityContext Global Security Container Context
## @param global.podSecurityContext Global Pod Container Context
##
global:
imageRegistry: ""
Expand Down

0 comments on commit 52eefe8

Please sign in to comment.