Add new Kubernetes resource kind: "Network"
[yardstick.git] / yardstick / common / messaging / __init__.py
1 # Copyright (c) 2018 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # MQ is statically configured:
16 #   - MQ service: RabbitMQ
17 #   - user/password: yardstick/yardstick
18 #   - host:port: localhost:5672
19 MQ_USER = 'yardstick'
20 MQ_PASS = 'yardstick'
21 MQ_SERVICE = 'rabbit'
22 SERVER = 'localhost'
23 PORT = 5672
24 TRANSPORT_URL = (MQ_SERVICE + '://' + MQ_USER + ':' + MQ_PASS + '@' + SERVER +
25                  ':' + str(PORT) + '/')
26
27 # RPC server.
28 RPC_SERVER_EXECUTOR = 'threading'
29
30 # Topics.
31 RUNNER = 'runner'
32
33 # Methods.
34 # RUNNER methods:
35 RUNNER_INFO = 'runner_info'
36 RUNNER_LOOP = 'runner_loop'