mirror of https://github.com/hashicorp/consul
Alvin Huang
5 years ago
7 changed files with 203 additions and 19 deletions
@ -0,0 +1,7 @@
|
||||
#!/bin/bash |
||||
|
||||
export GIT_COMMIT=$(git rev-parse --short HEAD) |
||||
export GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true) |
||||
export GIT_DESCRIBE=$(git describe --tags --always --match "v*") |
||||
export GIT_IMPORT=github.com/hashicorp/consul/version |
||||
export GOLDFLAGS="-X ${GIT_IMPORT}.GitCommit=${GIT_COMMIT}${GIT_DIRTY} -X ${GIT_IMPORT}.GitDescribe=${GIT_DESCRIBE}" |
@ -0,0 +1,60 @@
|
||||
{ |
||||
"admin": { |
||||
"access_log_path": "/dev/null", |
||||
"address": { |
||||
"socket_address": { |
||||
"address": "127.0.0.1", |
||||
"port_value": 19000 |
||||
} |
||||
} |
||||
}, |
||||
"node": { |
||||
"cluster": "test-proxy", |
||||
"id": "test-proxy" |
||||
}, |
||||
"static_resources": { |
||||
"clusters": [ |
||||
{ |
||||
"name": "local_agent", |
||||
"connect_timeout": "1s", |
||||
"type": "STATIC", |
||||
"http2_protocol_options": {}, |
||||
"hosts": [ |
||||
{ |
||||
"socket_address": { |
||||
"address": "127.0.0.1", |
||||
"port_value": 9999 |
||||
} |
||||
} |
||||
] |
||||
} |
||||
] |
||||
}, |
||||
"stats_config": { |
||||
"stats_tags": [ |
||||
{ |
||||
"tag_name": "local_cluster", |
||||
"fixed_value": "test-proxy" |
||||
} |
||||
], |
||||
"use_all_default_tags": true |
||||
}, |
||||
"dynamic_resources": { |
||||
"lds_config": { "ads": {} }, |
||||
"cds_config": { "ads": {} }, |
||||
"ads_config": { |
||||
"api_type": "GRPC", |
||||
"grpc_services": { |
||||
"initial_metadata": [ |
||||
{ |
||||
"key": "x-consul-token", |
||||
"value": "" |
||||
} |
||||
], |
||||
"envoy_grpc": { |
||||
"cluster_name": "local_agent" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue