Compare commits
12 commits
cd3bc7a17a
...
b45626d13f
Author | SHA1 | Date | |
---|---|---|---|
b45626d13f | |||
47df8291d1 | |||
216113009e | |||
4384636bba | |||
055ac02709 | |||
0424970476 | |||
b396a5689c | |||
ab1a8b4745 | |||
f3871a514e | |||
9f7054c9fa | |||
37ed663b3b | |||
9990d4f64b |
8 changed files with 16 additions and 16 deletions
1
.vscode/extensions.json
vendored
1
.vscode/extensions.json
vendored
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"mikestead.dotenv",
|
||||
"redhat.ansible",
|
||||
"redhat.vscode-yaml",
|
||||
"signageos.signageos-vscode-sops",
|
||||
"pkief.material-icon-theme",
|
||||
|
|
|
@ -36,3 +36,12 @@ spec:
|
|||
- regexp:
|
||||
source: "(.*)"
|
||||
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
|
||||
s3: &minio
|
||||
bucket: "crunchy-main"
|
||||
endpoint: "s3.hsn.dev"
|
||||
endpoint: "s3.jahanson.tech:9000"
|
||||
region: "us-east-1"
|
||||
schedules:
|
||||
full: "0 1 * * 0" # Sunday at 01:00
|
||||
|
|
|
@ -31,7 +31,7 @@ spec:
|
|||
app:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/prowlarr-develop
|
||||
tag: 1.29.0.4897@sha256:dbbc3ba87472bd61dd0138f7bc81d7a7f5295995bd6b8ed8ff3bd0187db2faab
|
||||
tag: 1.29.0.4897@sha256:7ce899a3aede6e505e395bcf0f7a6749b25b57b69e1a355bd39dc7f60a25985e
|
||||
env:
|
||||
# Ref: https://github.com/Radarr/Radarr/issues/7030#issuecomment-1039689518
|
||||
# Ref: https://github.com/dotnet/runtime/issues/9336
|
||||
|
|
|
@ -27,6 +27,10 @@ spec:
|
|||
values:
|
||||
defaultPodOptions:
|
||||
priorityClassName: system-node-critical
|
||||
tolerations:
|
||||
- key: node-role.kubernetes.io/control-plane
|
||||
operator: Exists
|
||||
effect: NoSchedule
|
||||
controllers:
|
||||
generic-device-plugin:
|
||||
type: daemonset
|
||||
|
|
|
@ -32,8 +32,6 @@ nodes:
|
|||
officialExtensions:
|
||||
- siderolabs/i915
|
||||
- siderolabs/intel-ucode
|
||||
- siderolabs/glibc
|
||||
|
||||
- hostname: frodo
|
||||
disableSearchDomain: true
|
||||
ipAddress: 10.1.1.63
|
||||
|
@ -51,8 +49,6 @@ nodes:
|
|||
officialExtensions:
|
||||
- siderolabs/i915
|
||||
- siderolabs/intel-ucode
|
||||
- siderolabs/glibc
|
||||
|
||||
- hostname: sam
|
||||
disableSearchDomain: true
|
||||
ipAddress: 10.1.1.64
|
||||
|
@ -70,8 +66,6 @@ nodes:
|
|||
officialExtensions:
|
||||
- siderolabs/i915
|
||||
- siderolabs/intel-ucode
|
||||
- siderolabs/glibc
|
||||
|
||||
- hostname: pippin
|
||||
disableSearchDomain: true
|
||||
ipAddress: 10.1.1.65
|
||||
|
@ -89,8 +83,6 @@ nodes:
|
|||
officialExtensions:
|
||||
- siderolabs/i915
|
||||
- siderolabs/intel-ucode
|
||||
- siderolabs/glibc
|
||||
|
||||
- hostname: merry
|
||||
disableSearchDomain: true
|
||||
ipAddress: 10.1.1.66
|
||||
|
@ -119,7 +111,6 @@ nodes:
|
|||
- siderolabs/amd-ucode
|
||||
- siderolabs/nvidia-container-toolkit-production
|
||||
- siderolabs/nvidia-open-gpu-kernel-modules-production
|
||||
- siderolabs/glibc
|
||||
- hostname: rosie
|
||||
disableSearchDomain: true
|
||||
ipAddress: 10.1.1.67
|
||||
|
@ -137,8 +128,6 @@ nodes:
|
|||
officialExtensions:
|
||||
- siderolabs/i915
|
||||
- siderolabs/intel-ucode
|
||||
- siderolabs/glibc
|
||||
|
||||
worker:
|
||||
patches:
|
||||
# hugepages
|
||||
|
|
|
@ -4,5 +4,4 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
|||
kind: Kustomization
|
||||
resources:
|
||||
- ./claim.yaml
|
||||
- ./minio.yaml
|
||||
- ./r2.yaml
|
||||
|
|
|
@ -31,7 +31,7 @@ metadata:
|
|||
spec:
|
||||
sourcePVC: "${APP}"
|
||||
trigger:
|
||||
schedule: "0 0 * * *"
|
||||
schedule: "0 * * * *"
|
||||
restic:
|
||||
copyMethod: "${VOLSYNC_COPYMETHOD:-Snapshot}"
|
||||
pruneIntervalDays: 7
|
||||
|
|
Reference in a new issue