Skip to content

Commit 8a1ad26

Browse files
committed
v3.0.1: Bugfix parsing of --ingress-gateway-ips
1 parent db10697 commit 8a1ad26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker-ingress-routing-daemon

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

3-
VERSION=3.0.0
3+
VERSION=3.0.1
44

5-
# Ingress Routing Daemon v3.0.0
5+
# Ingress Routing Daemon v3.0.1
66
# Copyright © 2020-2021 Struan Bartlett
77
# ----------------------------------------------------------------------
88
# Permission is hereby granted, free of charge, to any person
@@ -102,7 +102,7 @@ TCPServicePortString=$(echo ${TCP_PORTS[@]} | tr ' ' ',')
102102
UDPServicePortString=$(echo ${UDP_PORTS[@]} | tr ' ' ',')
103103

104104
if [ ${#INGRESS_NODE_GATEWAY_IPS[@]} -gt 0 ]; then
105-
INGRESS_NODE_GATEWAY_IPS=$(echo ${INGRESS_NODE_GATEWAY_IPS[@]} | tr ' ' ',')
105+
INGRESS_NODE_GATEWAY_IPS=$(echo ${INGRESS_NODE_GATEWAY_IPS[@]})
106106
fi
107107

108108
# Prevent "WARNING: Error loading config file: .dockercfg: $HOME is not defined" messages

0 commit comments

Comments
 (0)