Skip to content

Commit

Permalink
remove unnecessary quotes (#171)
Browse files Browse the repository at this point in the history
* fix for #170

Signed-off-by: Andrei Kartashov <a@ioot.xyz>

* Update redis-cluster.yaml

Signed-off-by: Andrei Kartashov <a@ioot.xyz>

* Update redis-replication.yaml

Signed-off-by: Andrei Kartashov <a@ioot.xyz>

* Update redis-sentinel.yaml

Signed-off-by: Andrei Kartashov <a@ioot.xyz>

* fix CI

Signed-off-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>

* version  bump

Signed-off-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>

* fix CI

Signed-off-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>

---------

Signed-off-by: Andrei Kartashov <a@ioot.xyz>
Signed-off-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>
Co-authored-by: Shubham Gupta <iamshubhamgupta2001@gmail.com>
  • Loading branch information
amkartashov and shubham-cmyk authored Nov 8, 2023
1 parent cfe2734 commit c54e65c
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
uses: helm/chart-testing-action@v2.6.0

- name: Run chart-testing (list-changed)
id: list-changed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
uses: helm/chart-testing-action@v2.6.0

- name: Add Helm Repository
run: |
Expand Down
2 changes: 1 addition & 1 deletion charts/redis-cluster/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: redis-cluster
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
version: 0.15.10
version: 0.15.11
appVersion: "0.15.1"
home: https://github.com/ot-container-kit/redis-operator
sources:
Expand Down
6 changes: 3 additions & 3 deletions charts/redis-cluster/templates/redis-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ spec:
{{- end }}
{{- if and .Values.redisCluster.redisSecret.secretName .Values.redisCluster.redisSecret.secretKey }}
redisSecret:
name: "{{ .Values.redisCluster.redisSecret.secretName | quote }}"
key: "{{ .Values.redisCluster.redisSecret.secretKey | quote }}"
name: {{ .Values.redisCluster.redisSecret.secretName | quote }}
key: {{ .Values.redisCluster.redisSecret.secretKey | quote }}
{{- end }}

{{- if .Values.storageSpec }}
Expand Down Expand Up @@ -82,4 +82,4 @@ spec:
{{- end }}
{{- if and .Values.serviceAccountName (ne .Values.serviceAccountName "") }}
serviceAccountName: "{{ .Values.serviceAccountName }}"
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/redis-replication/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maintainers:
- name: shubham-cmyk
sources:
- https://github.com/ot-container-kit/redis-operator
version: 0.15.10
version: 0.15.11
appVersion: "0.15.1"
home: https://github.com/ot-container-kit/redis-operator
keywords:
Expand Down
6 changes: 3 additions & 3 deletions charts/redis-replication/templates/redis-replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ spec:
{{- end }}
{{- if and .Values.redisReplication.redisSecret.secretName .Values.redisReplication.redisSecret.secretKey }}
redisSecret:
name: "{{ .Values.redisReplication.redisSecret.secretName | quote }}"
key: "{{ .Values.redisReplication.redisSecret.secretKey | quote }}"
name: {{ .Values.redisReplication.redisSecret.secretName | quote }}
key: {{ .Values.redisReplication.redisSecret.secretKey | quote }}
{{- end }}
{{- if .Values.redisReplication.ignoreAnnotations}}
ignoreAnnotations: {{ toYaml .Values.redisReplication.ignoreAnnotations | nindent 6 }}
Expand Down Expand Up @@ -85,4 +85,4 @@ spec:
{{- if .Values.env }}
env: {{ toYaml .Values.env | nindent 4 }}
{{- end }}


2 changes: 1 addition & 1 deletion charts/redis-sentinel/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: redis-sentinel
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
version: 0.15.11
version: 0.15.12
appVersion: "0.15.1"
home: https://github.com/ot-container-kit/redis-operator
sources:
Expand Down
4 changes: 2 additions & 2 deletions charts/redis-sentinel/templates/redis-sentinel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ spec:
{{- end }}
{{- if and .Values.redisSentinel.redisSecret.secretName .Values.redisSentinel.redisSecret.secretKey }}
redisSecret:
name: "{{ .Values.redisSentinel.redisSecret.secretName | quote }}"
key: "{{ .Values.redisSentinel.redisSecret.secretKey | quote }}"
name: {{ .Values.redisSentinel.redisSecret.secretName | quote }}
key: {{ .Values.redisSentinel.redisSecret.secretKey | quote }}
{{- end }}
{{- if .Values.redisSentinel.ignoreAnnotations}}
ignoreAnnotations: {{ toYaml .Values.redisSentinel.ignoreAnnotations | nindent 6 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/redis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
name: redis
description: Provides easy redis setup definitions for Kubernetes services, and deployment.
version: 0.15.10
version: 0.15.11
appVersion: "0.15.1"
home: https://github.com/ot-container-kit/redis-operator
sources:
Expand Down
4 changes: 2 additions & 2 deletions charts/redis/templates/redis-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ spec:
{{- end }}
{{- if and .Values.redisStandalone.redisSecret.secretName .Values.redisStandalone.redisSecret.secretKey }}
redisSecret:
name: "{{ .Values.redisStandalone.redisSecret.secretName | quote }}"
key: "{{ .Values.redisStandalone.redisSecret.secretKey | quote }}"
name: {{ .Values.redisStandalone.redisSecret.secretName | quote }}
key: {{ .Values.redisStandalone.redisSecret.secretKey | quote }}
{{- end }}
{{- if .Values.redisStandalone.ignoreAnnotations}}
ignoreAnnotations: {{ toYaml .Values.redisStandalone.ignoreAnnotations | nindent 6 }}
Expand Down
1 change: 0 additions & 1 deletion ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ chart-dirs:
- charts
chart-repos:
- ot-helm=https://ot-container-kit.github.io/helm-charts
helm-extra-args: --timeout 600s
excluded-charts:
- mysql

0 comments on commit c54e65c

Please sign in to comment.