Compare commits
3 Commits
generic-de
...
rclone-buc
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c9a3bf080 | |||
| 86c9cd930a | |||
| 0f14e46c20 |
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: rclone-bucket
|
name: rclone-bucket
|
||||||
version: 0.5.0
|
version: 0.6.0
|
||||||
description: Rclone CronJob to replicate buckets
|
description: Rclone CronJob to replicate buckets
|
||||||
keywords:
|
keywords:
|
||||||
- rclone-bucket
|
- rclone-bucket
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# rclone-bucket
|
# rclone-bucket
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Rclone CronJob to replicate buckets
|
Rclone CronJob to replicate buckets
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ Rclone CronJob to replicate buckets
|
|||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| additionalLabels | object | `{}` | Add additional labels |
|
| additionalLabels | object | `{}` | Add additional labels |
|
||||||
| cronJob | object | `{"backoffLimit":3,"parallelism":1,"schedule":"0 0 * * *","suspend":false,"timeZone":"America/Chicago"}` | CronJob configuration |
|
| cronJob | object | `{"backoffLimit":3,"parallelism":1,"schedule":"0 0 * * *","suspend":false,"timeZone":"America/Chicago"}` | CronJob configuration |
|
||||||
| image | object | `{"pullPolicy":"IfNotPresent","repository":"rclone/rclone","tag":"1.73.5@sha256:1619a625f845e169c34b952cf40c483c0392965b821c5155cde8cbfd35254a96"}` | Default image |
|
| image | object | `{"pullPolicy":"IfNotPresent","repository":"rclone/rclone","tag":"1.74.0@sha256:d2e0e88359d0b2e67cfcd2c43d5405185eb8adfc207079df27c42da82c5207bc"}` | Default image |
|
||||||
| nameOverride | string | `""` | Default pattern follows <pvcTarget>-backup |
|
| nameOverride | string | `""` | Default pattern follows <pvcTarget>-backup |
|
||||||
| prune | object | `{"ageToPrune":"90d","enabled":false,"exclude":"","include":""}` | Enable prune job |
|
| prune | object | `{"ageToPrune":"90d","enabled":false,"exclude":"","include":""}` | Enable prune job |
|
||||||
| rclone | object | `{"destination":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"},"providerType":"Other","source":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}}` | rclone configuration |
|
| rclone | object | `{"destination":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"},"providerType":"Other","source":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}}` | rclone configuration |
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ controllers:
|
|||||||
- dest:{{ .Values.rclone.destination.bucketName }}
|
- dest:{{ .Values.rclone.destination.bucketName }}
|
||||||
- --s3-no-check-bucket
|
- --s3-no-check-bucket
|
||||||
{{- if .Values.prune.enabled }}
|
{{- if .Values.prune.enabled }}
|
||||||
- --min-age
|
- --max-age
|
||||||
- {{ .Values.prune.ageToPrune | quote }}
|
- {{ .Values.prune.ageToPrune | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.prune.include }}
|
{{- if .Values.prune.include }}
|
||||||
@@ -64,7 +64,7 @@ controllers:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ include "rclone.sourceSecretName" . }}
|
name: {{ include "rclone.sourceSecretName" . }}
|
||||||
key: {{ include "secretRclone.envSrcEndpoint" . }}
|
key: {{ include "secretRclone.envSrcEndpoint" . }}
|
||||||
- name: RCLONE_CONFIG_SRC_S3_FORCE_PATH_STYLE
|
- name: RCLONE_CONFIG_SRC_FORCE_PATH_STYLE
|
||||||
value: {{ .Values.rclone.source.forcePathStyle | quote }}
|
value: {{ .Values.rclone.source.forcePathStyle | quote }}
|
||||||
- name: RCLONE_CONFIG_DEST_TYPE
|
- name: RCLONE_CONFIG_DEST_TYPE
|
||||||
value: s3
|
value: s3
|
||||||
@@ -92,7 +92,7 @@ controllers:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ include "rclone.destinationSecretName" . }}
|
name: {{ include "rclone.destinationSecretName" . }}
|
||||||
key: {{ include "secretRclone.envDestEndpoint" . }}
|
key: {{ include "secretRclone.envDestEndpoint" . }}
|
||||||
- name: RCLONE_CONFIG_DEST_S3_FORCE_PATH_STYLE
|
- name: RCLONE_CONFIG_DEST_FORCE_PATH_STYLE
|
||||||
value: {{ .Values.rclone.destination.forcePathStyle | quote }}
|
value: {{ .Values.rclone.destination.forcePathStyle | quote }}
|
||||||
{{- if .Values.prune.enabled }}
|
{{- if .Values.prune.enabled }}
|
||||||
prune:
|
prune:
|
||||||
@@ -103,7 +103,7 @@ controllers:
|
|||||||
args:
|
args:
|
||||||
- delete
|
- delete
|
||||||
- dest:{{ .Values.rclone.destination.bucketName }}
|
- dest:{{ .Values.rclone.destination.bucketName }}
|
||||||
- --min-age
|
- --max-age
|
||||||
- {{ .Values.prune.ageToPrune | quote }}
|
- {{ .Values.prune.ageToPrune | quote }}
|
||||||
- --verbose
|
- --verbose
|
||||||
env:
|
env:
|
||||||
@@ -133,7 +133,7 @@ controllers:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ include "rclone.destinationSecretName" . }}
|
name: {{ include "rclone.destinationSecretName" . }}
|
||||||
key: {{ include "secretRclone.envDestEndpoint" . }}
|
key: {{ include "secretRclone.envDestEndpoint" . }}
|
||||||
- name: RCLONE_CONFIG_DEST_S3_FORCE_PATH_STYLE
|
- name: RCLONE_CONFIG_DEST_FORCE_PATH_STYLE
|
||||||
value: {{ .Values.rclone.destination.forcePathStyle | quote }}
|
value: {{ .Values.rclone.destination.forcePathStyle | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# valkey
|
# valkey
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Valkey chart with preconfigured settings
|
Valkey chart with preconfigured settings
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ Valkey chart with preconfigured settings
|
|||||||
| valkey.metrics.enabled | bool | `true` | |
|
| valkey.metrics.enabled | bool | `true` | |
|
||||||
| valkey.metrics.exporter.image.registry | string | `"ghcr.io"` | |
|
| valkey.metrics.exporter.image.registry | string | `"ghcr.io"` | |
|
||||||
| valkey.metrics.exporter.image.repository | string | `"oliver006/redis_exporter"` | |
|
| valkey.metrics.exporter.image.repository | string | `"oliver006/redis_exporter"` | |
|
||||||
| valkey.metrics.exporter.image.tag | string | `"v1.82.0@sha256:6a97d4dd743b533e1f950c677b87d880e44df363c61af3f406fc9e53ed65ee03"` | |
|
| valkey.metrics.exporter.image.tag | string | `"v1.83.0@sha256:e8c209894d4c0cc55b1259ddd47e0b769ad1ff864b356736ee885462a3b0e48c"` | |
|
||||||
| valkey.metrics.exporter.resources.requests.cpu | string | `"1m"` | |
|
| valkey.metrics.exporter.resources.requests.cpu | string | `"1m"` | |
|
||||||
| valkey.metrics.exporter.resources.requests.memory | string | `"10M"` | |
|
| valkey.metrics.exporter.resources.requests.memory | string | `"10M"` | |
|
||||||
| valkey.metrics.podMonitor.enabled | bool | `true` | |
|
| valkey.metrics.podMonitor.enabled | bool | `true` | |
|
||||||
|
|||||||
Reference in New Issue
Block a user