mirror of
https://github.com/bitnami/charts.git
synced 2026-02-19 11:37:23 +08:00
[bitnami/minio] Introduced .Release.Namespace in objects meta (#2177)
* [bitnami/minio] Introduced .Release.Namespace in objects meta * [bitnami/minio] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com>
This commit is contained in:
committed by
GitHub
parent
f5c4d9122b
commit
cefffdb35e
@@ -1,5 +1,5 @@
|
||||
apiVersion: v1
|
||||
version: 3.1.5
|
||||
version: 3.2.0
|
||||
appVersion: 2020.3.25
|
||||
description: MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.)
|
||||
keywords:
|
||||
|
||||
@@ -3,6 +3,7 @@ apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
spec:
|
||||
{{- if .Values.deployment.updateStrategy }}
|
||||
|
||||
@@ -3,6 +3,7 @@ apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- if .Values.ingress.certManager }}
|
||||
|
||||
@@ -3,6 +3,7 @@ kind: NetworkPolicy
|
||||
apiVersion: networking.k8s.io/v1
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
spec:
|
||||
podSelector:
|
||||
|
||||
@@ -3,6 +3,7 @@ kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
spec:
|
||||
accessModes:
|
||||
|
||||
@@ -3,6 +3,7 @@ apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
type: Opaque
|
||||
data:
|
||||
|
||||
@@ -2,6 +2,7 @@ apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
{{- if .Values.service.annotations }}
|
||||
annotations: {{- include "minio.tplValue" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }}
|
||||
|
||||
@@ -3,6 +3,7 @@ apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ template "minio.serviceAccountName" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
secrets:
|
||||
- name: {{ include "minio.fullname" . }}
|
||||
|
||||
@@ -5,6 +5,7 @@ apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
spec:
|
||||
selector:
|
||||
|
||||
@@ -3,6 +3,7 @@ apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "minio.fullname" . }}-headless
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" . | nindent 4 }}
|
||||
spec:
|
||||
type: ClusterIP
|
||||
|
||||
@@ -4,6 +4,7 @@ apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .name }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "minio.labels" $ | nindent 4 }}
|
||||
type: kubernetes.io/tls
|
||||
data:
|
||||
|
||||
@@ -19,7 +19,7 @@ global:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/minio
|
||||
tag: 2020.3.25-debian-10-r13
|
||||
tag: 2020.3.25-debian-10-r14
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
|
||||
@@ -19,7 +19,7 @@ global:
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/minio
|
||||
tag: 2020.3.25-debian-10-r13
|
||||
tag: 2020.3.25-debian-10-r14
|
||||
## Specify a imagePullPolicy
|
||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||
|
||||
Reference in New Issue
Block a user