diff --git a/README.md b/README.md index f85bf64..3421155 100644 --- a/README.md +++ b/README.md @@ -23,5 +23,5 @@ kubectl create secret generic bitwarden-access-token -n external-secrets --from- zfs pool creation: ```bash k -n kube-system debug -it --profile sysadmin --image=ubuntu node/kadan -chroot /host zpool create -o ashift=12 -O mountpoint=/var/ocean -O xattr=sa -O compression=zstd -O acltype=posixacl -O atime=off ocean raidz sdc sdd +chroot /host zpool create -o ashift=12 -O mountpoint=legacy -O xattr=sa -O compression=zstd -O acltype=posixacl -O atime=off ocean raidz sdc sdd ``` diff --git a/charts/transmission/deployment.yaml b/charts/transmission/deployment.yaml index e172b3e..dd78852 100644 --- a/charts/transmission/deployment.yaml +++ b/charts/transmission/deployment.yaml @@ -37,10 +37,16 @@ spec: value: "27071" - name: TRANSMISSION__RPC_AUTHENTICATION_REQUIRED value: "true" - envFrom: - - prefix: TRANSMISSION__RPC_ - secretRef: - name: transmission + - name: TRANSMISSION__RPC_USERNAME + valueFrom: + secretKeyRef: + name: transmission + key: username + - name: TRANSMISSION__RPC_PASSWORD + valueFrom: + secretKeyRef: + name: transmission + key: password volumeMounts: - name: config mountPath: /config diff --git a/charts/transmission/flood/deploy.yaml b/charts/transmission/flood/deploy.yaml index dabce7a..4a28dfd 100644 --- a/charts/transmission/flood/deploy.yaml +++ b/charts/transmission/flood/deploy.yaml @@ -15,10 +15,12 @@ spec: - name: flood image: jesec/flood:4.9.5 env: + - name: HOME + value: /config - name: FLOOD_OPTION_AUTH value: none - name: FLOOD_OPTION_TRURL - value: "http://transmission:9091" + value: "http://transmission:9091/transmission/rpc" - name: FLOOD_OPTION_TRUSER valueFrom: secretKeyRef: @@ -31,13 +33,13 @@ spec: key: password volumeMounts: - name: config - mountPath: /data + mountPath: /config - name: downloads mountPath: /downloads - readonly: true + readOnly: true - name: medias mountPath: /medias - readonly: true + readOnly: true volumes: - name: config persistentVolumeClaim: