-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ProtonVPN #7
Comments
I think your network value should be like this:
|
@andrewc910 Did you ever figure out what was the issue? |
@razagill I a pretty sure the error was due to miss configuration of the local network IP value. |
I tried the value you provided. It didnt end up working. I ended up switching to nordvpn and that just worked. However, i just moved and i need to resetup my server. I can give another tey to proton if youd like. I still have the config file. |
@andrewc910 Sure, I also tried it with 2 different providers (expressvpn and premiumize) and both give the same error. I even tried the replicaCount: 1
image:
repository: "haugene/transmission-openvpn"
tag: "latest"
pullPolicy: "IfNotPresent"
dnsPolicy: "None"
dnsConfig:
nameservers:
- 8.8.8.8
- 8.8.4.4
env:
- name: OPENVPN_PROVIDER
value: "CUSTOM" # VPN provider. List of supported providers: https://haugene.github.io/docker-transmission-openvpn/supported-providers/
- name: OPENVPN_USERNAME
valueFrom: # Reference to the secret | openvpn.username
secretKeyRef:
name: "openvpn"
key: "username"
- name: OPENVPN_PASSWORD
valueFrom: # Reference to the secret | openvpn.password
secretKeyRef:
name: "openvpn"
key: "password"
- name: LOCAL_NETWORK
value: "192.168.0.0/24"
- name: TRANSMISSION_PEER_PORT
value: "47444"
- name: TRANSMISSION_DOWNLOAD_DIR
value: "/downloads/transmission"
- name: PUID
value: "1000"
- name: PGID
value: "1000"
service:
type: ClusterIP
port: 80
volumes:
- name: "media-ssd"
persistentVolumeClaim:
claimName: "media-ssd"
- name: dev-tun
hostPath:
path: "/dev/net/tun"
- name: config
configMap:
name: "openvpn-common-config"
volumeMounts:
- name: "media-ssd"
mountPath: "/data"
subPath: "configs/transmission-data" # Path /mnt/ssd/media/configs/transmission-data where transmission writes the configuration
- name: "media-ssd"
mountPath: "/downloads/transmission"
subPath: "downloads/transmission" # Path /mnt/ssd/media/downloads/transmission where transmission downloads Torrents
- name: dev-tun
mountPath: "/dev/net/tun"
- name: config
mountPath: "/etc/openvpn/custom/default.ovpn"
securityContext:
#privileged: true
capabilities: # Needed for VPN
add:
- NET_ADMIN |
i got it working with the following values:
|
Hello, I am new to kubernetes so this might be a common issue but i figured this was the best place to try.
There seems to be an error with ProtonVPN. I can't tell if it's your chart, the actual docker image or my configuration.
Create a secret:
Create a configmap:
Apply the install your transmission chart with:
Here is what my config looks like:
The error:
Note: I do not receive this error when doing
sudo openvpn my_proton_vpn_file.ovpn
on my local machine.The text was updated successfully, but these errors were encountered: