fix(argo-cd): Drop all ~
keys from redis-ha because they cause error on kustomize and cannot document via helm-docs (#1322)
* fix(argo-cd): Add notes on redis-ha for kustomize users Signed-off-by: yu-croco <yuki.kita22@gmail.com> * fix(argo-cd): Drop all `~` keys from redis-ha Signed-off-by: yu-croco <yuki.kita22@gmail.com> * feat(argo-cd): keep necessary redis-ha parameters Signed-off-by: yu-croco <yuki.kita22@gmail.com>
This commit is contained in:
parent
0a28b48f95
commit
b665d53b4d
4 changed files with 12 additions and 24 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.7
|
appVersion: v2.4.7
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 4.10.1
|
version: 4.10.2
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -21,5 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- [Changed]: redis image was migrated from docker hub to public ecr for docker hub rate limit
|
- "[Fixed]: Drop all `~` keys from redis-ha because they cause error on kustomize and cannot document via helm-docs"
|
||||||
- [Changed]: redis-exporter image was migrated from docker hub to public ecr for docker hub rate limit
|
|
||||||
|
|
|
@ -696,13 +696,8 @@ The main options are listed here:
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| redis-ha.enabled | bool | `false` | Enables the Redis HA subchart and disables the custom Redis single node deployment |
|
| redis-ha.enabled | bool | `false` | Enables the Redis HA subchart and disables the custom Redis single node deployment |
|
||||||
| redis-ha.exporter.enabled | bool | `true` | If `true`, the prometheus exporter sidecar is enabled |
|
| redis-ha.exporter.enabled | bool | `true` | If `true`, the prometheus exporter sidecar is enabled |
|
||||||
| redis-ha.exporter.image | string | `nil` (follows subchart default) | Exporter image |
|
|
||||||
| redis-ha.exporter.tag | string | `nil` (follows subchart default) | Exporter tag |
|
|
||||||
| redis-ha.haproxy.enabled | bool | `true` | Enabled HAProxy LoadBalancing/Proxy |
|
| redis-ha.haproxy.enabled | bool | `true` | Enabled HAProxy LoadBalancing/Proxy |
|
||||||
| redis-ha.haproxy.image.repository | string | `nil` (follows subchart default) | HAProxy Image Repository |
|
|
||||||
| redis-ha.haproxy.image.tag | string | `nil` (follows subchart default) | HAProxy Image Tag |
|
|
||||||
| redis-ha.haproxy.metrics.enabled | bool | `true` | HAProxy enable prometheus metric scraping |
|
| redis-ha.haproxy.metrics.enabled | bool | `true` | HAProxy enable prometheus metric scraping |
|
||||||
| redis-ha.image.repository | string | `nil` (follows subchart default) | Redis image repository |
|
|
||||||
| redis-ha.image.tag | string | `"7.0.0-alpine"` | Redis tag |
|
| redis-ha.image.tag | string | `"7.0.0-alpine"` | Redis tag |
|
||||||
| redis-ha.persistentVolume.enabled | bool | `false` | Configures persistency on Redis nodes |
|
| redis-ha.persistentVolume.enabled | bool | `false` | Configures persistency on Redis nodes |
|
||||||
| redis-ha.redis.config | object | See [values.yaml] | Any valid redis config options in this section will be applied to each server (see `redis-ha` chart) |
|
| redis-ha.redis.config | object | See [values.yaml] | Any valid redis config options in this section will be applied to each server (see `redis-ha` chart) |
|
||||||
|
@ -712,6 +707,11 @@ The main options are listed here:
|
||||||
| redis-ha.topologySpreadConstraints.maxSkew | string | `""` (defaults to `1`) | Max skew of pods tolerated |
|
| redis-ha.topologySpreadConstraints.maxSkew | string | `""` (defaults to `1`) | Max skew of pods tolerated |
|
||||||
| redis-ha.topologySpreadConstraints.topologyKey | string | `""` (defaults to `topology.kubernetes.io/zone`) | Topology key for spread |
|
| redis-ha.topologySpreadConstraints.topologyKey | string | `""` (defaults to `topology.kubernetes.io/zone`) | Topology key for spread |
|
||||||
| redis-ha.topologySpreadConstraints.whenUnsatisfiable | string | `""` (defaults to `ScheduleAnyway`) | Enforcement policy, hard or soft |
|
| redis-ha.topologySpreadConstraints.whenUnsatisfiable | string | `""` (defaults to `ScheduleAnyway`) | Enforcement policy, hard or soft |
|
||||||
|
| redis-ha.exporter.image | string | `nil` (follows subchart default) | Exporter image |
|
||||||
|
| redis-ha.exporter.tag | string | `nil` (follows subchart default) | Exporter tag |
|
||||||
|
| redis-ha.haproxy.image.repository | string | `nil` (follows subchart default) | HAProxy Image Repository |
|
||||||
|
| redis-ha.haproxy.image.tag | string | `nil` (follows subchart default) | HAProxy Image Tag |
|
||||||
|
| redis-ha.image.repository | string | `nil` (follows subchart default) | Redis image repository |
|
||||||
|
|
||||||
### Option 3 - External Redis
|
### Option 3 - External Redis
|
||||||
|
|
||||||
|
|
|
@ -288,6 +288,11 @@ The main options are listed here:
|
||||||
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
| redis-ha.exporter.image | string | `nil` (follows subchart default) | Exporter image |
|
||||||
|
| redis-ha.exporter.tag | string | `nil` (follows subchart default) | Exporter tag |
|
||||||
|
| redis-ha.haproxy.image.repository | string | `nil` (follows subchart default) | HAProxy Image Repository |
|
||||||
|
| redis-ha.haproxy.image.tag | string | `nil` (follows subchart default) | HAProxy Image Tag |
|
||||||
|
| redis-ha.image.repository | string | `nil` (follows subchart default) | Redis image repository |
|
||||||
|
|
||||||
### Option 3 - External Redis
|
### Option 3 - External Redis
|
||||||
|
|
||||||
|
|
|
@ -784,12 +784,6 @@ redis-ha:
|
||||||
exporter:
|
exporter:
|
||||||
# -- If `true`, the prometheus exporter sidecar is enabled
|
# -- If `true`, the prometheus exporter sidecar is enabled
|
||||||
enabled: true
|
enabled: true
|
||||||
# -- Exporter image
|
|
||||||
# @default -- `nil` (follows subchart default)
|
|
||||||
image: ~
|
|
||||||
# -- Exporter tag
|
|
||||||
# @default -- `nil` (follows subchart default)
|
|
||||||
tag: ~
|
|
||||||
persistentVolume:
|
persistentVolume:
|
||||||
# -- Configures persistency on Redis nodes
|
# -- Configures persistency on Redis nodes
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -805,20 +799,10 @@ redis-ha:
|
||||||
haproxy:
|
haproxy:
|
||||||
# -- Enabled HAProxy LoadBalancing/Proxy
|
# -- Enabled HAProxy LoadBalancing/Proxy
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
|
||||||
# -- HAProxy Image Repository
|
|
||||||
# @default -- `nil` (follows subchart default)
|
|
||||||
repository: ~
|
|
||||||
# -- HAProxy Image Tag
|
|
||||||
# @default -- `nil` (follows subchart default)
|
|
||||||
tag: ~
|
|
||||||
metrics:
|
metrics:
|
||||||
# -- HAProxy enable prometheus metric scraping
|
# -- HAProxy enable prometheus metric scraping
|
||||||
enabled: true
|
enabled: true
|
||||||
image:
|
image:
|
||||||
# -- Redis image repository
|
|
||||||
# @default -- `nil` (follows subchart default)
|
|
||||||
repository: ~
|
|
||||||
# -- Redis tag
|
# -- Redis tag
|
||||||
tag: 7.0.0-alpine
|
tag: 7.0.0-alpine
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue