Skip to content

Commit

Permalink
render: fix listening addresses in IPv6 case
Browse files Browse the repository at this point in the history
  • Loading branch information
danwinship committed Feb 14, 2020
1 parent 47d5b16 commit 92ed9c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/render/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ func (t *TemplateData) setEtcdAddress() {

// IPv6
if t.SingleStackIPv6 {
allAddresses = "[::]"
localhost = "[::1]"
allAddresses = "::"
localhost = "::1"
}

etcdAddress := options.EtcdAddress{
Expand Down

0 comments on commit 92ed9c4

Please sign in to comment.