Skip to content

Commit

Permalink
blank
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerred committed Feb 12, 2024
1 parent e98a229 commit 2ac83dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cdk8s/dist/lamport.k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ spec:
containers:
- env:
- name: TZ
value: America/Los_Angeles
value: ""
- name: PUID
value: "1000"
- name: PGID
Expand Down
4 changes: 4 additions & 0 deletions cdk8s/src/services/torrents/bazarr.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
Deployment,
DeploymentStrategy,
EnvValue,
Service,
Volume,
} from "npm:cdk8s-plus-27";
Expand All @@ -21,6 +22,9 @@ export function createBazarrDeployment(chart: Chart) {
withCommonLinuxServerProps({
image: "lscr.io/linuxserver/bazarr",
portNumber: 6767,
envVariables: {
TZ: EnvValue.fromValue(""),
},
volumeMounts: [
{
path: "/config",
Expand Down

0 comments on commit 2ac83dc

Please sign in to comment.