diff options
author | Trevor Tao <trevor.tao@arm.com> | 2017-09-21 14:43:29 +0800 |
---|---|---|
committer | Trevor Tao <trevor.tao@arm.com> | 2017-09-21 14:43:29 +0800 |
commit | 0f4cf413a3c527ddf2eab3d724ae758e39af1aa0 (patch) | |
tree | 12ba15eddc81f579029151c9f8cc5b167bce8ba7 /tests | |
parent | 870d2ba61b4a3352ef8485c3b39690346010e89b (diff) |
Add nodeSelector to enable selecting the desired
Kubernetes running node when creating containers for
Kubernetes context
For example, a yaml file may looks like:
servers:
host:
image: xxx
command: /bin/bash
nodeSelector:
xxx: yyy
Synchronously change the unit test for this function
Change-Id: If74c9dad9b1a70395bb79f34708a0fde04e7e650
Signed-off-by: Trevor Tao <trevor.tao@arm.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/orchestrator/test_kubernetes.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/orchestrator/test_kubernetes.py b/tests/unit/orchestrator/test_kubernetes.py index 51718ab86..1a3291c89 100644 --- a/tests/unit/orchestrator/test_kubernetes.py +++ b/tests/unit/orchestrator/test_kubernetes.py @@ -62,7 +62,10 @@ service ssh restart;while true ; do sleep 10000; done" }, "name": "k8s-86096c30-key" } - ] + ], + "nodeSelector": { + "kubernetes.io/hostname": "node-01" + } } } } @@ -71,7 +74,8 @@ service ssh restart;while true ; do sleep 10000; done" 'command': '/bin/bash', 'args': ['-c', 'chmod 700 ~/.ssh; chmod 600 ~/.ssh/*; \ service ssh restart;while true ; do sleep 10000; done'], - 'ssh_key': 'k8s-86096c30-key' + 'ssh_key': 'k8s-86096c30-key', + 'nodeSelector': { 'kubernetes.io/hostname': 'node-01'} } name = 'host-k8s-86096c30' output_r = KubernetesObject(name, **input_s).get_template() |