mirror of
https://github.com/zoriya/snow.git
synced 2025-12-05 23:06:23 +00:00
Fix transmission password
This commit is contained in:
@@ -23,5 +23,5 @@ kubectl create secret generic bitwarden-access-token -n external-secrets --from-
|
|||||||
zfs pool creation:
|
zfs pool creation:
|
||||||
```bash
|
```bash
|
||||||
k -n kube-system debug -it --profile sysadmin --image=ubuntu node/kadan
|
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
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -37,10 +37,16 @@ spec:
|
|||||||
value: "27071"
|
value: "27071"
|
||||||
- name: TRANSMISSION__RPC_AUTHENTICATION_REQUIRED
|
- name: TRANSMISSION__RPC_AUTHENTICATION_REQUIRED
|
||||||
value: "true"
|
value: "true"
|
||||||
envFrom:
|
- name: TRANSMISSION__RPC_USERNAME
|
||||||
- prefix: TRANSMISSION__RPC_
|
valueFrom:
|
||||||
secretRef:
|
secretKeyRef:
|
||||||
name: transmission
|
name: transmission
|
||||||
|
key: username
|
||||||
|
- name: TRANSMISSION__RPC_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: transmission
|
||||||
|
key: password
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /config
|
mountPath: /config
|
||||||
|
|||||||
@@ -15,10 +15,12 @@ spec:
|
|||||||
- name: flood
|
- name: flood
|
||||||
image: jesec/flood:4.9.5
|
image: jesec/flood:4.9.5
|
||||||
env:
|
env:
|
||||||
|
- name: HOME
|
||||||
|
value: /config
|
||||||
- name: FLOOD_OPTION_AUTH
|
- name: FLOOD_OPTION_AUTH
|
||||||
value: none
|
value: none
|
||||||
- name: FLOOD_OPTION_TRURL
|
- name: FLOOD_OPTION_TRURL
|
||||||
value: "http://transmission:9091"
|
value: "http://transmission:9091/transmission/rpc"
|
||||||
- name: FLOOD_OPTION_TRUSER
|
- name: FLOOD_OPTION_TRUSER
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
@@ -31,13 +33,13 @@ spec:
|
|||||||
key: password
|
key: password
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /data
|
mountPath: /config
|
||||||
- name: downloads
|
- name: downloads
|
||||||
mountPath: /downloads
|
mountPath: /downloads
|
||||||
readonly: true
|
readOnly: true
|
||||||
- name: medias
|
- name: medias
|
||||||
mountPath: /medias
|
mountPath: /medias
|
||||||
readonly: true
|
readOnly: true
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
|||||||
Reference in New Issue
Block a user