Do not require secure file for nodepoold
We currently don't read anything from the secure file, so requiring it seems pointless and confusing. Change-Id: I1ab809d41bbfe709cd4ee34cbc9c481eed993868
This commit is contained in:
parent
e9272a8b98
commit
7c1c7ed0c6
@ -37,7 +37,6 @@ class NodePoolDaemon(nodepool.cmd.NodepoolDaemonApp):
|
|||||||
default='/etc/nodepool/nodepool.yaml',
|
default='/etc/nodepool/nodepool.yaml',
|
||||||
help='path to config file')
|
help='path to config file')
|
||||||
parser.add_argument('-s', dest='secure',
|
parser.add_argument('-s', dest='secure',
|
||||||
default='/etc/nodepool/secure.conf',
|
|
||||||
help='path to secure file')
|
help='path to secure file')
|
||||||
parser.add_argument('--no-webapp', action='store_true')
|
parser.add_argument('--no-webapp', action='store_true')
|
||||||
return parser
|
return parser
|
||||||
|
@ -1344,7 +1344,8 @@ class NodePool(threading.Thread):
|
|||||||
|
|
||||||
def loadConfig(self):
|
def loadConfig(self):
|
||||||
config = nodepool_config.loadConfig(self.configfile)
|
config = nodepool_config.loadConfig(self.configfile)
|
||||||
nodepool_config.loadSecureConfig(config, self.securefile)
|
if self.securefile:
|
||||||
|
nodepool_config.loadSecureConfig(config, self.securefile)
|
||||||
return config
|
return config
|
||||||
|
|
||||||
def reconfigureZooKeeper(self, config):
|
def reconfigureZooKeeper(self, config):
|
||||||
|
Loading…
Reference in New Issue
Block a user