Skip to content

Commit

Permalink
Merge pull request #7 from robbrockbank/add-delimiter-to-block-key
Browse files Browse the repository at this point in the history
Add delimiter to block key
  • Loading branch information
robbrockbank authored May 9, 2017
2 parents 0cb7103 + 2004862 commit 90f6e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/k8s/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (c *Client) GetValues(keys []string) (map[string]string, error) {
cidr := kNode.Spec.PodCIDR
parts := strings.Split(cidr, "/")
cidr = strings.Join(parts, "-")
kvps[key + cidr] = "{}"
kvps[key + "/" + cidr] = "{}"
}
switch key {
case global:
Expand Down

0 comments on commit 90f6e1c

Please sign in to comment.