Skip to content

Commit

Permalink
v3.0.1: Bugfix parsing of --ingress-gateway-ips
Browse files Browse the repository at this point in the history
  • Loading branch information
struanb committed Feb 18, 2021
1 parent db10697 commit 8a1ad26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-ingress-routing-daemon
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

VERSION=3.0.0
VERSION=3.0.1

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

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

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

0 comments on commit 8a1ad26

Please sign in to comment.