Compare commits
10 commits
dbf68c316d
...
1acc05b751
Author | SHA1 | Date | |
---|---|---|---|
1acc05b751 | |||
47df8291d1 | |||
216113009e | |||
4384636bba | |||
055ac02709 | |||
0424970476 | |||
b396a5689c | |||
ab1a8b4745 | |||
f3871a514e | |||
9f7054c9fa |
6 changed files with 12 additions and 5 deletions
1
.vscode/extensions.json
vendored
1
.vscode/extensions.json
vendored
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"mikestead.dotenv",
|
"mikestead.dotenv",
|
||||||
"redhat.ansible",
|
|
||||||
"redhat.vscode-yaml",
|
"redhat.vscode-yaml",
|
||||||
"signageos.signageos-vscode-sops",
|
"signageos.signageos-vscode-sops",
|
||||||
"pkief.material-icon-theme",
|
"pkief.material-icon-theme",
|
||||||
|
|
|
@ -36,3 +36,12 @@ spec:
|
||||||
- regexp:
|
- regexp:
|
||||||
source: "(.*)"
|
source: "(.*)"
|
||||||
target: "minio_$1"
|
target: "minio_$1"
|
||||||
|
- extract:
|
||||||
|
key: hetzner
|
||||||
|
rewrite:
|
||||||
|
- regexp:
|
||||||
|
source: "[^a-zA-Z0-9 -]"
|
||||||
|
target: "_"
|
||||||
|
- regexp:
|
||||||
|
source: "(.*)"
|
||||||
|
target: "hetzner_$1"
|
||||||
|
|
|
@ -178,7 +178,7 @@ spec:
|
||||||
- name: repo1 # Minio
|
- name: repo1 # Minio
|
||||||
s3: &minio
|
s3: &minio
|
||||||
bucket: "crunchy-main"
|
bucket: "crunchy-main"
|
||||||
endpoint: "s3.hsn.dev"
|
endpoint: "s3.jahanson.tech:9000"
|
||||||
region: "us-east-1"
|
region: "us-east-1"
|
||||||
schedules:
|
schedules:
|
||||||
full: "0 1 * * 0" # Sunday at 01:00
|
full: "0 1 * * 0" # Sunday at 01:00
|
||||||
|
|
|
@ -31,7 +31,7 @@ spec:
|
||||||
app:
|
app:
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/autobrr/autobrr
|
repository: ghcr.io/autobrr/autobrr
|
||||||
tag: v1.55.0@sha256:227b0592cb91809edf000f67ea12192a74d83213c8c8ed3c6ece9cac7b59e821
|
tag: v1.56.0@sha256:f05a75c6e43af6daaca453687aca51d88fd902051d07a7b27174638759c426a8
|
||||||
env:
|
env:
|
||||||
AUTOBRR__CHECK_FOR_UPDATES: "false"
|
AUTOBRR__CHECK_FOR_UPDATES: "false"
|
||||||
AUTOBRR__HOST: 0.0.0.0
|
AUTOBRR__HOST: 0.0.0.0
|
||||||
|
|
|
@ -4,5 +4,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
resources:
|
resources:
|
||||||
- ./claim.yaml
|
- ./claim.yaml
|
||||||
- ./minio.yaml
|
|
||||||
- ./r2.yaml
|
- ./r2.yaml
|
||||||
|
|
|
@ -31,7 +31,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
sourcePVC: "${APP}"
|
sourcePVC: "${APP}"
|
||||||
trigger:
|
trigger:
|
||||||
schedule: "0 0 * * *"
|
schedule: "0 * * * *"
|
||||||
restic:
|
restic:
|
||||||
copyMethod: "${VOLSYNC_COPYMETHOD:-Snapshot}"
|
copyMethod: "${VOLSYNC_COPYMETHOD:-Snapshot}"
|
||||||
pruneIntervalDays: 7
|
pruneIntervalDays: 7
|
||||||
|
|
Reference in a new issue