deluge changed to alpine base

This commit is contained in:
Hyatt 2022-03-02 11:24:19 -06:00
parent 19f3ef27a4
commit e3eb3e4594
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -3,37 +3,39 @@
def repository = "registry.c.test-chamber-13.lan" def repository = "registry.c.test-chamber-13.lan"
def repositoryCreds = "harbor-repository-creds" def repositoryCreds = "harbor-repository-creds"
def connectivity_test = """#! /usr/bin/env bash def route_override = """#! /usr/bin/env sh
curl --silent --fail --insecure http://localhost:8112 > /dev/null VPN_GATEWAY=\$(ip route | grep default | awk '{print $3}')
if [[ "\${?}" != "0" ]]; then ip route add 10.42.0.0/16 via "\${VPN_GATEWAY}" dev eth0
ip route add 10.43.0.0/16 via "\${VPN_GATEWAY}" dev eth0
ip route add 10.20.0.0/16 via "\${VPN_GATEWAY}" dev eth0
ip route del default via "\${VPN_GATEWAY}"
printf "%s\n" "Route Updated"
"""
def connectivity_test = """#! /usr/bin/env sh
if ! curl --silent --fail --insecure http://localhost:8112 > /dev/null; then
printf '%s\\n' "Deluge not running." printf '%s\\n' "Deluge not running."
exit 100 exit 100
fi fi
if [ -z "\${DDNS_HOST}" ] || [ "\${DDNS_HOST}" = "" ]; then
if [[ -z "\${DDNS_HOST}" ]] || [[ "\${DDNS_HOST}" == "" ]]; then
printf '%s\\n' "Dynamic DNS host is not set." printf '%s\\n' "Dynamic DNS host is not set."
exit 100 exit 100
fi fi
DIP=\$(dig -4 @ns1.google.com TXT o-o.myaddr.l.google.com +short | sed -e 's/"//g') DIP=\$(dig -4 @ns1.google.com TXT o-o.myaddr.l.google.com +short | sed -e 's/"//g')
if [[ -z "\${DIP+x}" ]] || [[ "\${DIP}" == "" ]]; then if [ -z "\${DIP+x}" ] || [ "\${DIP}" = "" ]; then
printf '%s\\n' "Unable to detect real-world IP." printf '%s\\n' "Unable to detect real-world IP."
exit 100 exit 100
fi fi
KIP=\$(dig "\${DDNS_HOST}" +short)
KIP=\$(dig \${DDNS_HOST} +short) if [ -z "\${KIP+x}" ] || [ "\${KIP}" = "" ]; then
if [[ -z "\${KIP+x}" ]] || [[ "\${KIP}" == "" ]]; then
printf '%s\\n' "Unable to get known IP." printf '%s\\n' "Unable to get known IP."
exit 100 exit 100
fi fi
if [ "\${DIP}" = "\${KIP}" ]; then
if [[ "\${DIP}" == "\${KIP}" ]]; then
printf '%s\\n' "VPN is not functional." printf '%s\\n' "VPN is not functional."
exit 100 exit 100
fi fi
if ! ping -c 2 google.com > /dev/null; then
ping -c 2 google.com > /dev/null
if [[ "\${?}" != "0" ]]; then
printf '%s\\n' "No internet connectivity." printf '%s\\n' "No internet connectivity."
exit 100 exit 100
fi fi
@ -42,13 +44,10 @@ fi
def dockerFile = """FROM ${repository}/linuxserver/linuxserver/deluge:amd64-latest def dockerFile = """FROM ${repository}/linuxserver/linuxserver/deluge:amd64-latest
LABEL maintainer="The_Spider <spider@smoothnet.org>" LABEL maintainer="The_Spider <spider@smoothnet.org>"
COPY connectivity_test.sh /root/connectivity_test.sh COPY /root/route-override.sh connectivity_test.sh /root/
RUN apt-get update && \\ RUN apk add --no-cache openvpn iputils bind-tools && \\
apt-get install -y openvpn iputils-ping dnsutils && \\ chmod +x /root/route-override.sh /root/connectivity_test.sh
apt-get clean && \\
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \\
chmod +x /root/connectivity_test.sh
""" """
def label = "kubernetes-${UUID.randomUUID().toString()}" def label = "kubernetes-${UUID.randomUUID().toString()}"
@ -65,6 +64,7 @@ podTemplate(
node (label) { node (label) {
def workspace = pwd() def workspace = pwd()
writeFile(file: workspace + "/route-override.sh", text: route_override)
writeFile(file: workspace + "/connectivity_test.sh", text: connectivity_test) writeFile(file: workspace + "/connectivity_test.sh", text: connectivity_test)
functions.buildContainer( functions.buildContainer(