take an --api-url option to agent executables
This commit is contained in:
parent
4b5b49850f
commit
20e530aab6
teeth_agent/cmd
@ -14,8 +14,19 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
|
||||||
from teeth_agent import decom
|
from teeth_agent import decom
|
||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
decom.DecomAgent('0.0.0.0', 9999).run()
|
parser = argparse.ArgumentParser(
|
||||||
|
description='Run the teeth-agent in decom mode')
|
||||||
|
|
||||||
|
parser.add_argument('--api-url',
|
||||||
|
required=True,
|
||||||
|
help='URL of the Teeth agent API')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
decom.DecomAgent('0.0.0.0', 9999, args.api_url).run()
|
||||||
|
@ -14,8 +14,19 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
|
||||||
from teeth_agent import standby
|
from teeth_agent import standby
|
||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
standby.StandbyAgent('0.0.0.0', 9999).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')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
standby.StandbyAgent('0.0.0.0', 9999, args.api_url).run()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user