Synchronize upstreamed folder to 07e1b3f42

This commit is contained in:
bitnami-bot
2020-02-17 08:35:23 +00:00
parent 256040d082
commit 3326cd27c6
5 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: redis
version: 10.5.1
version: 10.5.2
appVersion: 5.0.7
description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
keywords:

View File

@@ -481,7 +481,7 @@ volumePermissions:
image:
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
@@ -508,7 +508,7 @@ sysctlImage:
command: []
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.

View File

@@ -481,7 +481,7 @@ volumePermissions:
image:
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
@@ -508,7 +508,7 @@ sysctlImage:
command: []
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.

View File

@@ -482,7 +482,7 @@ volumePermissions:
image:
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
@@ -509,7 +509,7 @@ sysctlImage:
command: []
registry: docker.io
repository: bitnami/minideb
tag: stretch
tag: buster
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.

View File

@@ -208,7 +208,7 @@ Return sysctl image
{{- define "redis.sysctl.image" -}}
{{- $registryName := default "docker.io" .Values.sysctlImage.registry -}}
{{- $repositoryName := .Values.sysctlImage.repository -}}
{{- $tag := default "stretch" .Values.sysctlImage.tag | toString -}}
{{- $tag := default "buster" .Values.sysctlImage.tag | toString -}}
{{/*
Helm 2.11 supports the assignment of a value to a variable defined in a different scope,
but Helm 2.9 and 2.10 doesn't support it, so we need to implement this if-else logic.