unify the agent executables in teeth-agent

This commit is contained in:
Russell Haering
2014-01-14 21:44:21 -08:00
parent 27bc0eb316
commit c62cf1a7fa
3 changed files with 9 additions and 71 deletions

View File

@@ -16,8 +16,7 @@ packages =
[entry_points]
console_scripts =
teeth-standby-agent = teeth_agent.cmd.standby:run
teeth-decom-agent = teeth_agent.cmd.decom:run
teeth-agent = teeth_agent.cmd.agent:run
teeth_agent.modes =
standby = teeth_agent.standby:StandbyMode

View File

@@ -16,13 +16,14 @@ limitations under the License.
import argparse
from teeth_agent import decom
from teeth_agent import base
from teeth_agent import logging
def run():
parser = argparse.ArgumentParser(
description='Run the teeth-agent in decom mode')
description=('An agent that handles decomissioning and provisioning'
' on behalf of teeth-overlord.'))
parser.add_argument('--api-url',
required=True,
@@ -55,8 +56,8 @@ def run():
args = parser.parse_args()
logging.configure()
advertise_port = args.advertise_port or args.listen_port
decom.DecomAgent(args.listen_host,
args.listen_port,
args.advertise_host,
advertise_port,
args.api_url).run()
base.TeethAgent(args.listen_host,
args.listen_port,
args.advertise_host,
advertise_port,
args.api_url).run()

View File

@@ -1,62 +0,0 @@
"""
Copyright 2013 Rackspace, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import argparse
from teeth_agent import logging
from teeth_agent import standby
def run():
parser = argparse.ArgumentParser(
description='Run the teeth-agent in standby mode')
parser.add_argument('--api-url',
required=True,
help='URL of the Teeth agent API')
parser.add_argument('--listen-host',
type=str,
help=('The IP address to listen on. Leave this blank'
' to auto-detect. A common use-case would be to'
' override this with \'localhost\', in order to'
' run behind a proxy, while leaving'
' advertise-host unspecified.'))
parser.add_argument('--listen-port',
default=9999,
type=int,
help='The port to listen on')
parser.add_argument('--advertise-host',
type=str,
help=('The IP address to advertise. Leave this blank'
' to auto-detect by calling \'getsockname()\' on'
' a connection to the agent API.'))
parser.add_argument('--advertise-port',
type=int,
help=('The port to advertise. Defaults to listen-port.'
' Useful when running behind a proxy.'))
args = parser.parse_args()
logging.configure()
advertise_port = args.advertise_port or args.listen_port
standby.StandbyAgent(args.listen_host,
args.listen_port,
args.advertise_host,
advertise_port,
args.api_url).run()