Skip to content

Commit

Permalink
image tag: v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
djangoyi-yunify committed Mar 22, 2024
1 parent ba9374c commit 6efa068
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/redis-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
apiVersion: v2
appVersion: "1.3.2"
appVersion: "1.3.3"
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
engine: gotpl
maintainers:
- name: RadonDB
name: redis-operator
sources:
- https://github.com/QingCloudAppcenter/Redis-operator
version: 1.3.2
version: 1.3.3
home: https://github.com/QingCloudAppcenter/Redis-operator
icon: https://github.com/QingCloudAppcenter/Redis-operator/raw/main/static/redis-operator-logo.png
keywords:
Expand Down
7 changes: 6 additions & 1 deletion charts/redis-operator/templates/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ spec:
- name: "{{ .Values.redisOperator.name }}"
image: "{{ default "docker.io" (default .Values.localRegistry .Values.global.imageRegistry) }}/{{ .Values.redisOperator.imageName }}:{{ .Values.redisOperator.imageTag }}"
imagePullPolicy: {{ .Values.redisOperator.imagePullPolicy }}
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
env:
{{- if .Values.redisPasswordEncrypt }}
- name: REDIS_PASSWORD_ENCRYPT
Expand All @@ -43,7 +47,8 @@ spec:
- name: NAMESPACE_OVERRIDE
value: {{ .Values.namespaceOverride }}
{{- end }}

- name: IMAGE_PULL_SECRETS
value: {{ join "," .Values.global.imagePullSecrets }}

#redisImageName: redis
{{- if .Values.redisImageName }}
Expand Down
3 changes: 2 additions & 1 deletion charts/redis-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
global:
imageRegistry: ""
imagePullSecrets: []

redisOperator:
name: redis-operator
imageName: radondb/redis-operator
imageTag: v1.3.2
imageTag: v1.3.3
imagePullPolicy: IfNotPresent
imagePrefix: docker.io

Expand Down

0 comments on commit 6efa068

Please sign in to comment.