Skip to content

Commit

Permalink
Merge pull request #4308 from hashicorp/b-connect-services
Browse files Browse the repository at this point in the history
agent/config: parse upstreams with multiple service definitions
  • Loading branch information
mitchellh authored Jun 29, 2018
2 parents 5c8585a + 6ef28de commit a9c7cd1
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
1 change: 1 addition & 0 deletions agent/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func Parse(data string, format string) (c Config, err error) {
"services.checks",
"watches",
"service.connect.proxy.config.upstreams",
"services.connect.proxy.config.upstreams",
})

// There is a difference of representation of some fields depending on
Expand Down
59 changes: 59 additions & 0 deletions agent/config/runtime_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2159,6 +2159,65 @@ func TestConfigFlagsAndEdgecases(t *testing.T) {
},
},

{
desc: "JSON multiple services managed proxy 'upstreams'",
args: []string{
`-data-dir=` + dataDir,
},
json: []string{
`{
"services": [{
"name": "web",
"port": 8080,
"connect": {
"proxy": {
"config": {
"upstreams": [{
"local_bind_port": 1234
}, {
"local_bind_port": 2345
}]
}
}
}
},{
"name": "service-A2",
"port": 81,
"tags": [],
"checks": []
}]
}`,
},
skipformat: true, // skipping HCL cause we get slightly diff types (okay)
patch: func(rt *RuntimeConfig) {
rt.DataDir = dataDir
rt.Services = []*structs.ServiceDefinition{
&structs.ServiceDefinition{
Name: "web",
Port: 8080,
Connect: &structs.ServiceConnect{
Proxy: &structs.ServiceDefinitionConnectProxy{
Config: map[string]interface{}{
"upstreams": []interface{}{
map[string]interface{}{
"local_bind_port": float64(1234),
},
map[string]interface{}{
"local_bind_port": float64(2345),
},
},
},
},
},
},
&structs.ServiceDefinition{
Name: "service-A2",
Port: 81,
},
}
},
},

{
desc: "enabling Connect allow_managed_root",
args: []string{
Expand Down

0 comments on commit a9c7cd1

Please sign in to comment.