thanos: 0.4.0 -> 0.5.0-rc.0

This commit is contained in:
Bas van Dijk 2019-06-01 17:08:09 +02:00
parent ebc65a5f21
commit 2d0243c187
2 changed files with 4 additions and 13 deletions

View File

@ -122,8 +122,7 @@ let
grpc-address = mkParamDef types.str "0.0.0.0:10901" '' grpc-address = mkParamDef types.str "0.0.0.0:10901" ''
Listen <literal>ip:port</literal> address for gRPC endpoints (StoreAPI). Listen <literal>ip:port</literal> address for gRPC endpoints (StoreAPI).
Make sure this address is routable from other components if you use gossip, Make sure this address is routable from other components.
<option>grpc-advertise-address</option> is empty and you require cross-node connection.
''; '';
grpc-server-tls-cert = mkParam types.str '' grpc-server-tls-cert = mkParam types.str ''
@ -249,14 +248,6 @@ let
query = params.common // { query = params.common // {
http-advertise-address = mkParam types.str ''
Explicit (external) <literal>host:port</literal> address to advertise
for HTTP QueryAPI in gossip cluster.
If <literal>null</literal>, the option <option>http-address</option>
will be used.
'';
grpc-client-tls-secure = mkFlagParam '' grpc-client-tls-secure = mkFlagParam ''
Use TLS when talking to the gRPC server Use TLS when talking to the gRPC server
''; '';

View File

@ -8,13 +8,13 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "thanos"; pname = "thanos";
version = "0.4.0"; version = "0.5.0-rc.0";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = "v${version}"; rev = "v${version}";
owner = "improbable-eng"; owner = "improbable-eng";
repo = "thanos"; repo = "thanos";
sha256 = "0md9m7swmxh0sg6vf169iw3p6jc1hxzgylirh6vs1q0frz21y47j"; sha256 = "1m7jj5g7s4c7nhbyc6vwn08ripp4d3ciim48siillwhm90gbphrw";
}; };
overrideModAttrs = oldAttrs : { overrideModAttrs = oldAttrs : {
@ -23,7 +23,7 @@ buildGoModule rec {
]; ];
}; };
modSha256 = "0sr9g95qab7x46m3mpahpb2xgzdbpy6p0kn6gq1s5phg2xxj2w00"; modSha256 = "1236cg00h8077fmvyddwjsnw85r69ac18b2chcpgzd85xdcaxavk";
subPackages = "cmd/thanos"; subPackages = "cmd/thanos";