[CI] Update the magnum image name & increase timeouts
This is required because of Magnum change I86d4dcc94fff622be4ee2acc8dd60ed81bc5d433 Change-Id: I5e36ceb142c8d32b47430efb0cc85b2a13e777fb
This commit is contained in:
parent
cd80c95650
commit
3902019565
@ -268,15 +268,15 @@
|
||||
|
||||
# Time(in sec) to wait for magnum cluster to be created. (floating
|
||||
# point value)
|
||||
#magnum_cluster_create_timeout = 1200.0
|
||||
#magnum_cluster_create_timeout = 2400.0
|
||||
|
||||
# Time interval(in sec) between checks when waiting for cluster
|
||||
# creation. (floating point value)
|
||||
#magnum_cluster_create_poll_interval = 1.0
|
||||
#magnum_cluster_create_poll_interval = 2.0
|
||||
|
||||
# Time(in sec) to wait for k8s pod to be created. (floating point
|
||||
# value)
|
||||
#k8s_pod_create_timeout = 600.0
|
||||
#k8s_pod_create_timeout = 1200.0
|
||||
|
||||
# Time interval(in sec) between checks when waiting for k8s pod
|
||||
# creation. (floating point value)
|
||||
|
@ -1,3 +1,4 @@
|
||||
{% set image = "Fedora-Atomic-26-20170723.0.x86_64" %}
|
||||
---
|
||||
MagnumClusterTemplates.list_cluster_templates:
|
||||
-
|
||||
@ -10,7 +11,7 @@
|
||||
tenants: 1
|
||||
users_per_tenant: 1
|
||||
cluster_templates:
|
||||
image_id: "fedora-atomic-latest"
|
||||
image_id: {{ image }}
|
||||
flavor_id: "m1.small"
|
||||
master_flavor_id: "m1.small"
|
||||
external_network_id: "public"
|
||||
@ -34,7 +35,7 @@
|
||||
tenants: 1
|
||||
users_per_tenant: 1
|
||||
cluster_templates:
|
||||
image_id: "fedora-atomic-latest"
|
||||
image_id: {{ image }}
|
||||
flavor_id: "m1.small"
|
||||
master_flavor_id: "m1.small"
|
||||
external_network_id: "public"
|
||||
@ -61,7 +62,7 @@
|
||||
tenants: 1
|
||||
users_per_tenant: 1
|
||||
cluster_templates:
|
||||
image_id: "fedora-atomic-latest"
|
||||
image_id: {{ image }}
|
||||
flavor_id: "m1.small"
|
||||
master_flavor_id: "m1.small"
|
||||
external_network_id: "public"
|
||||
|
@ -21,22 +21,22 @@ OPTS = {"benchmark": [
|
||||
help="Time(in sec) to sleep after creating a resource before "
|
||||
"polling for the status."),
|
||||
cfg.FloatOpt("magnum_cluster_create_timeout",
|
||||
default=1200.0,
|
||||
default=2400.0,
|
||||
help="Time(in sec) to wait for magnum cluster to be "
|
||||
"created."),
|
||||
cfg.FloatOpt("magnum_cluster_create_poll_interval",
|
||||
default=1.0,
|
||||
default=2.0,
|
||||
help="Time interval(in sec) between checks when waiting for "
|
||||
"cluster creation."),
|
||||
cfg.FloatOpt("k8s_pod_create_timeout",
|
||||
default=600.0,
|
||||
default=1200.0,
|
||||
help="Time(in sec) to wait for k8s pod to be created."),
|
||||
cfg.FloatOpt("k8s_pod_create_poll_interval",
|
||||
default=1.0,
|
||||
help="Time interval(in sec) between checks when waiting for "
|
||||
"k8s pod creation."),
|
||||
cfg.FloatOpt("k8s_rc_create_timeout",
|
||||
default=600.0,
|
||||
default=1200.0,
|
||||
help="Time(in sec) to wait for k8s rc to be created."),
|
||||
cfg.FloatOpt("k8s_rc_create_poll_interval",
|
||||
default=1.0,
|
||||
|
@ -260,7 +260,7 @@ class MagnumScenarioTestCase(test.ScenarioTestCase):
|
||||
{"apiVersion": "v1", "kind": "Pod",
|
||||
"metadata": {"name": "nginx"}})
|
||||
k8s_api.create_namespaced_pod.return_value = self.pod
|
||||
mock_time.side_effect = [1, 2, 3, 4, 5, 900, 901]
|
||||
mock_time.side_effect = [1, 2, 3, 4, 5, 1800, 1801]
|
||||
not_ready_pod = api_client.models.V1Pod()
|
||||
not_ready_status = api_client.models.V1PodStatus()
|
||||
not_ready_status.phase = "not_ready"
|
||||
@ -348,7 +348,7 @@ class MagnumScenarioTestCase(test.ScenarioTestCase):
|
||||
rc = api_client.models.V1ReplicationController()
|
||||
rc.spec = api_client.models.V1ReplicationControllerSpec()
|
||||
rc.spec.replicas = manifest["spec"]["replicas"]
|
||||
mock_time.side_effect = [1, 2, 3, 4, 5, 900, 901]
|
||||
mock_time.side_effect = [1, 2, 3, 4, 5, 1800, 1801]
|
||||
k8s_api.create_namespaced_replication_controller.return_value = rc
|
||||
not_ready_rc = api_client.models.V1ReplicationController()
|
||||
not_ready_rc_status = (
|
||||
|
Loading…
Reference in New Issue
Block a user