Merge "Rename certification/ to tasks/"
This commit is contained in:
commit
d9db5a09d4
@ -14,7 +14,7 @@ RUN echo '[ ! -z "$TERM" -a -r /etc/motd ] && cat /etc/motd' \
|
|||||||
>> /etc/bash.bashrc; echo '\
|
>> /etc/bash.bashrc; echo '\
|
||||||
╔═════════════════════════════════════════════════════════════════════════════╗\n\
|
╔═════════════════════════════════════════════════════════════════════════════╗\n\
|
||||||
║ Welcome to Rally Docker container! ║\n\
|
║ Welcome to Rally Docker container! ║\n\
|
||||||
║ Rally certification tasks, samples and docs are located at ~/source/ ║\n\
|
║ Rally pre created tasks, samples and docs are located at ~/source/ ║\n\
|
||||||
║ Rally configuration and DB are in ~/.rally/ ║\n\
|
║ Rally configuration and DB are in ~/.rally/ ║\n\
|
||||||
║ Rally at readthedocs - http://rally.readthedocs.org ║\n\
|
║ Rally at readthedocs - http://rally.readthedocs.org ║\n\
|
||||||
║ How to contribute - http://rally.readthedocs.org/en/latest/contribute.html ║\n\
|
║ How to contribute - http://rally.readthedocs.org/en/latest/contribute.html ║\n\
|
||||||
|
@ -135,7 +135,7 @@ be done via the following steps:
|
|||||||
likely to work if your home directory has excessively open
|
likely to work if your home directory has excessively open
|
||||||
permissions (e.g., ``0755``), which is not recommended.
|
permissions (e.g., ``0755``), which is not recommended.
|
||||||
|
|
||||||
You can find all task samples, docs and certification tasks at /opt/rally/.
|
You can find all task samples, docs and pre created tasks at /opt/rally/.
|
||||||
Also you may want to save the last command as an alias:
|
Also you may want to save the last command as an alias:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
6
tasks/README.rst
Normal file
6
tasks/README.rst
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
================================
|
||||||
|
Rally Tasks For Production Usage
|
||||||
|
================================
|
||||||
|
|
||||||
|
|
||||||
|
Detailed Instruction TBD
|
@ -5,7 +5,7 @@ source $SCRIPT_DIR/../rally_gate_functions.sh
|
|||||||
|
|
||||||
setUp
|
setUp
|
||||||
|
|
||||||
TASK=$RALLY_DIR/certification/openstack/task.yaml
|
TASK=$RALLY_DIR/tasks/openstack/task.yaml
|
||||||
TASK_ARGS=$RALLY_DIR/rally-jobs/certifcation_task_args.yaml
|
TASK_ARGS=$RALLY_DIR/rally-jobs/certifcation_task_args.yaml
|
||||||
|
|
||||||
TASK_ARGS="--task-args-file $TASK_ARGS"
|
TASK_ARGS="--task-args-file $TASK_ARGS"
|
||||||
|
@ -21,13 +21,13 @@ import unittest
|
|||||||
from tests.functional import utils
|
from tests.functional import utils
|
||||||
|
|
||||||
|
|
||||||
class TestCertificationTask(unittest.TestCase):
|
class TestPreCreatedTasks(unittest.TestCase):
|
||||||
|
|
||||||
def test_task_samples_is_valid(self):
|
def test_task_samples_is_valid(self):
|
||||||
rally = utils.Rally()
|
rally = utils.Rally()
|
||||||
full_path = os.path.join(
|
full_path = os.path.join(
|
||||||
os.path.dirname(__file__), os.pardir, os.pardir,
|
os.path.dirname(__file__), os.pardir, os.pardir,
|
||||||
"certification", "openstack")
|
"tasks", "openstack")
|
||||||
task_path = os.path.join(full_path, "task.yaml")
|
task_path = os.path.join(full_path, "task.yaml")
|
||||||
args_path = os.path.join(full_path, "task_arguments.yaml")
|
args_path = os.path.join(full_path, "task_arguments.yaml")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user