Skip to content

Commit

Permalink
feat(container): update ghcr.io/cross-seed/cross-seed ( 6.1.1 → 6.2.0…
Browse files Browse the repository at this point in the history
… ) (#8471)

Co-authored-by: bot-ross[bot] <98030736+bot-ross[bot]@users.noreply.github.com>
Co-authored-by: Devin Buhl <onedr0p@users.noreply.github.com>
  • Loading branch information
bot-ross[bot] and onedr0p authored Dec 13, 2024
1 parent 610bcb1 commit 13ae4d0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
linkType: "hardlink",
matchMode: "safe",
outputDir: "/config",
port: 80,
port: Number(process.env.CROSS_SEED_PORT),
qbittorrentUrl: "http://qbittorrent.default.svc.cluster.local",
radarr: ["http://radarr.default.svc.cluster.local/?apikey={{ .RADARR_API_KEY }}"],
skipRecheck: true,
Expand Down
19 changes: 14 additions & 5 deletions kubernetes/main/apps/default/cross-seed/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,24 @@ spec:
app:
image:
repository: ghcr.io/cross-seed/cross-seed
tag: 6.1.1@sha256:5cb54b46a614f362c0332a91e5754d6998d45ae27ccc2c77b04b1a3493816331
tag: 6.2.0@sha256:da47b009ee166da47aa691d0963d581c717fbbd4e7e48a260451414e465b0f5f
env:
CROSS_SEED_PORT: &port 80
TZ: America/New_York
args: ["daemon"]
probes:
liveness:
enabled: true
readiness:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /api/ping
port: *port
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand All @@ -65,7 +74,7 @@ spec:
controller: cross-seed
ports:
http:
port: 80
port: *port
persistence:
config:
type: emptyDir
Expand Down

0 comments on commit 13ae4d0

Please sign in to comment.