mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #20351 from bachp/etcd-new-port
etcd: make all service using etc go to 127.0.0.1:2379 by default
This commit is contained in:
commit
cbe7ca77db
@ -28,7 +28,7 @@ in {
|
|||||||
|
|
||||||
etcdServers = mkOption {
|
etcdServers = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ "http://127.0.0.1:4001" ];
|
default = [ "http://127.0.0.1:2379" ];
|
||||||
description = ''
|
description = ''
|
||||||
Fleet list of etcd endpoints to use.
|
Fleet list of etcd endpoints to use.
|
||||||
'';
|
'';
|
||||||
|
@ -23,7 +23,7 @@ in {
|
|||||||
|
|
||||||
etcdServers = mkOption {
|
etcdServers = mkOption {
|
||||||
description = "Kubernetes list of etcd servers to watch.";
|
description = "Kubernetes list of etcd servers to watch.";
|
||||||
default = [ "127.0.0.1:4001" ];
|
default = [ "127.0.0.1:2379" ];
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ in {
|
|||||||
|
|
||||||
fleetctlEndpoint = mkOption {
|
fleetctlEndpoint = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "http://127.0.0.1:4001";
|
default = "http://127.0.0.1:2379";
|
||||||
description = ''
|
description = ''
|
||||||
Panamax fleetctl endpoint.
|
Panamax fleetctl endpoint.
|
||||||
'';
|
'';
|
||||||
|
@ -11,7 +11,7 @@ in {
|
|||||||
|
|
||||||
etcd = {
|
etcd = {
|
||||||
machines = mkOption {
|
machines = mkOption {
|
||||||
default = [ "http://localhost:4001" ];
|
default = [ "http://127.0.0.1:2379" ];
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
description = "Skydns list of etcd endpoints to connect to.";
|
description = "Skydns list of etcd endpoints to connect to.";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user