* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
280 lines
15 KiB
Plaintext
280 lines
15 KiB
Plaintext
# Copyright 2017 VMware, Inc. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License
|
|
|
|
*** Settings ***
|
|
Documentation Test 23-03 - VCH Create
|
|
Resource ../../resources/Util.robot
|
|
Resource ../../resources/Group23-VIC-Machine-Service-Util.robot
|
|
Suite Setup Setup
|
|
Suite Teardown Teardown
|
|
Default Tags
|
|
|
|
|
|
*** Keywords ***
|
|
Setup
|
|
Start VIC Machine Server
|
|
Set Test Environment Variables
|
|
|
|
${PUBLIC_NETWORK}= Remove String %{PUBLIC_NETWORK} '
|
|
Set Suite Variable ${PUBLIC_NETWORK}
|
|
|
|
|
|
Teardown
|
|
Terminate All Processes kill=True
|
|
|
|
|
|
Create VCH
|
|
[Arguments] ${data}
|
|
Post Path Under Target vch ${data}
|
|
|
|
|
|
Create VCH Within Datacenter
|
|
[Arguments] ${data}
|
|
${dcID}= Get Datacenter ID
|
|
Post Path Under Target datacenter/${dcID}/vch ${data}
|
|
|
|
|
|
Inspect VCH Config ${name}
|
|
${RC} ${OUTPUT}= Run And Return Rc And Output bin/vic-machine-linux inspect config --target=%{TEST_URL} --thumbprint=%{TEST_THUMBPRINT} --user %{TEST_USERNAME} --password=%{TEST_PASSWORD} --compute-resource=%{TEST_RESOURCE} --name=${name} --format raw
|
|
Should Be Equal As Integers ${RC} 0
|
|
Set Test Variable ${OUTPUT}
|
|
|
|
|
|
Get VCH ${name}
|
|
Get Path Under Target vch
|
|
${id}= Run echo '${OUTPUT}' | jq -r '.vchs[] | select(.name=="${name}").id'
|
|
|
|
Get Path Under Target vch/${id}
|
|
|
|
|
|
*** Test Cases ***
|
|
Create minimal VCH
|
|
Create VCH '{"name":"%{VCH-NAME}-api-test-minimal","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Created
|
|
|
|
|
|
Inspect VCH Config %{VCH-NAME}-api-test-minimal
|
|
|
|
Output Should Contain --image-store=ds://%{TEST_DATASTORE}
|
|
Output Should Contain --bridge-network=%{BRIDGE_NETWORK}
|
|
|
|
|
|
Get VCH %{VCH-NAME}-api-test-minimal
|
|
|
|
Property Should Be Equal .name %{VCH-NAME}-api-test-minimal
|
|
|
|
Property Should Not Be Equal .compute.resource.id null
|
|
|
|
Property Should Contain .storage.image_stores[0] %{TEST_DATASTORE}
|
|
Property Should Be Equal .storage.base_image_size.value 8000000
|
|
Property Should Be Equal .storage.base_image_size.units KB
|
|
|
|
Property Should Contain .auth.server.certificate.pem -----BEGIN CERTIFICATE-----
|
|
Property Should Be Equal .auth.server.private_key.pem null
|
|
|
|
Property Should Contain .network.bridge.ip_range 172.16.0.0/12
|
|
|
|
Property Should Contain .runtime.power_state poweredOn
|
|
Property Should Contain .runtime.upgrade_status Up to date
|
|
|
|
Wait For VCH Initialization name=%{VCH-NAME}-api-test-minimal
|
|
|
|
[Teardown] Run Secret VIC Machine Delete Command %{VCH-NAME}-api-test-minimal
|
|
|
|
|
|
Create minimal VCH within datacenter
|
|
Create VCH Within Datacenter '{"name":"%{VCH-NAME}-api-test-dc","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Created
|
|
|
|
|
|
Inspect VCH Config %{VCH-NAME}-api-test-dc
|
|
|
|
Output Should Contain --image-store=ds://%{TEST_DATASTORE}
|
|
Output Should Contain --bridge-network=%{BRIDGE_NETWORK}
|
|
|
|
|
|
Get VCH %{VCH-NAME}-api-test-dc
|
|
|
|
Property Should Be Equal .name %{VCH-NAME}-api-test-dc
|
|
|
|
Property Should Not Be Equal .compute.resource.id null
|
|
|
|
Property Should Contain .storage.image_stores[0] %{TEST_DATASTORE}
|
|
Property Should Be Equal .storage.base_image_size.value 8000000
|
|
Property Should Be Equal .storage.base_image_size.units KB
|
|
|
|
Property Should Contain .auth.server.certificate.pem -----BEGIN CERTIFICATE-----
|
|
Property Should Be Equal .auth.server.private_key.pem null
|
|
|
|
Property Should Contain .network.bridge.ip_range 172.16.0.0/12
|
|
|
|
Property Should Contain .runtime.power_state poweredOn
|
|
Property Should Contain .runtime.upgrade_status Up to date
|
|
|
|
Wait For VCH Initialization name=%{VCH-NAME}-api-test-dc
|
|
|
|
[Teardown] Run Secret VIC Machine Delete Command %{VCH-NAME}-api-test-dc
|
|
|
|
|
|
Create complex VCH
|
|
Create VCH '{"name":"%{VCH-NAME}-api-test-complex","debug":3,"compute":{"cpu":{"limit":{"units":"MHz","value":2345},"reservation":{"units":"GHz","value":2},"shares":{"level":"high"}},"memory":{"limit":{"units":"MiB","value":1200},"reservation":{"units":"MiB","value":501},"shares":{"number":81910}},"resource":{"name":"%{TEST_RESOURCE}"}},"endpoint":{"cpu":{"sockets":2},"memory":{"units":"MiB","value":3072}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"],"volume_stores":[{"datastore":"ds://%{TEST_DATASTORE}/test-volumes/foo","label":"foo"}],"base_image_size":{"units":"B","value":16000000}},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"container":[{"alias":"vic-containers","firewall":"outbound","nameservers":["8.8.8.8","8.8.4.4"],"port_group":{"name":"${PUBLIC_NETWORK}"},"gateway":{"address":"203.0.113.1","routing_destinations":["203.0.113.1/24"]},"ip_ranges":["203.0.113.8/31"]}],"public":{"port_group":{"name":"${PUBLIC_NETWORK}"},"static":"192.168.100.22/24","gateway":{"address":"192.168.100.1"},"nameservers":["192.168.110.10","192.168.1.1"]}},"registry":{"image_fetch_proxy":{"http":"http://example.com","https":"https://example.com"},"insecure":["https://insecure.example.com"],"whitelist":["10.0.0.0/8"]},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}},"syslog_addr":"tcp://syslog.example.com:4444", "container": {"name_convention": "container-{id}"}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Created
|
|
|
|
|
|
Inspect VCH Config %{VCH-NAME}-api-test-complex
|
|
|
|
Output Should Contain --debug=3
|
|
|
|
Output Should Contain --cpu=2345
|
|
Output Should Contain --cpu-reservation=2000
|
|
Output Should Contain --cpu-shares=high
|
|
Output Should Contain --memory=1200
|
|
Output Should Contain --memory-reservation=501
|
|
Output Should Contain --memory-shares=81910
|
|
|
|
Output Should Contain --endpoint-cpu=2
|
|
Output Should Contain --endpoint-memory=3072
|
|
|
|
Output Should Contain --image-store=ds://%{TEST_DATASTORE}
|
|
Output Should Contain --volume-store=ds://%{TEST_DATASTORE}/test-volumes/foo:foo
|
|
Output Should Contain --base-image-size=16MB
|
|
|
|
Output Should Contain --bridge-network=%{BRIDGE_NETWORK}
|
|
Output Should Contain --container-network=${PUBLIC_NETWORK}:vic-containers
|
|
Output Should Contain --container-network-gateway=${PUBLIC_NETWORK}:203.0.113.1/24
|
|
Output Should Contain --container-network-ip-range=${PUBLIC_NETWORK}:203.0.113.8/31
|
|
Output Should Contain --container-network-dns=${PUBLIC_NETWORK}:8.8.8.8
|
|
Output Should Contain --container-network-dns=${PUBLIC_NETWORK}:8.8.4.4
|
|
Output Should Contain --container-network-firewall=${PUBLIC_NETWORK}:outbound
|
|
|
|
Output Should Contain --public-network-gateway=192.168.100.1
|
|
Output Should Contain --public-network-ip=192.168.100.22/24
|
|
Output Should Contain --dns-server=192.168.110.10
|
|
Output Should Contain --dns-server=192.168.1.1
|
|
|
|
Output Should Contain --insecure-registry=https://insecure.example.com
|
|
Output Should Contain --whitelist-registry=10.0.0.0/8
|
|
Output Should Contain --whitelist-registry=https://insecure.example.com
|
|
|
|
|
|
Get VCH %{VCH-NAME}-api-test-complex
|
|
|
|
Property Should Be Equal .name %{VCH-NAME}-api-test-complex
|
|
Property Should Be Equal .debug 3
|
|
Property Should Be Equal .syslog_addr tcp://syslog.example.com:4444
|
|
|
|
Property Should Not Be Equal .compute.resource.id null
|
|
Property Should Be Equal .compute.cpu.limit.value 2345
|
|
Property Should Be Equal .compute.cpu.limit.units MHz
|
|
Property Should Be Equal .compute.cpu.reservation.value 2000
|
|
Property Should Be Equal .compute.cpu.reservation.units MHz
|
|
Property Should Be Equal .compute.cpu.shares.level high
|
|
Property Should Be Equal .compute.memory.limit.value 1200
|
|
Property Should Be Equal .compute.memory.limit.units MiB
|
|
Property Should Be Equal .compute.memory.reservation.value 501
|
|
Property Should Be Equal .compute.memory.reservation.units MiB
|
|
Property Should Be Equal .compute.memory.shares.number 81910
|
|
|
|
Property Should Be Equal .endpoint.cpu.sockets 2
|
|
Property Should Be Equal .endpoint.memory.value 3072
|
|
Property Should Be Equal .endpoint.memory.units MiB
|
|
|
|
Property Should Contain .storage.image_stores[0] %{TEST_DATASTORE}
|
|
Property Should Contain .storage.volume_stores[0].datastore %{TEST_DATASTORE}/test-volumes/foo
|
|
Property Should Contain .storage.volume_stores[0].label foo
|
|
Property Should Be Equal .storage.base_image_size.value 16000
|
|
Property Should Be Equal .storage.base_image_size.units KB
|
|
|
|
Property Should Be Equal .registry.image_fetch_proxy.http http://example.com
|
|
Property Should Be Equal .registry.image_fetch_proxy.https https://example.com
|
|
Property Should Contain .registry.insecure | join(" ") https://insecure.example.com
|
|
Property Should Contain .registry.whitelist | join(" ") https://insecure.example.com
|
|
Property Should Contain .registry.whitelist | join(" ") 10.0.0.0/8
|
|
|
|
Property Should Contain .auth.server.certificate.pem -----BEGIN CERTIFICATE-----
|
|
Property Should Be Equal .auth.server.private_key.pem null
|
|
|
|
Property Should Be Equal .network.bridge.ip_range 172.16.0.0/12
|
|
Property Should Be Equal .network.container[0].alias vic-containers
|
|
Property Should Be Equal .network.container[0].firewall outbound
|
|
Property Should Be Equal .network.container[0].ip_ranges[0] 203.0.113.8/31
|
|
|
|
Property Should Be Equal .network.container[0].nameservers[0] 8.8.8.8
|
|
Property Should Be Equal .network.container[0].nameservers[1] 8.8.4.4
|
|
Property Should Be Equal .network.container[0].gateway.address 203.0.113.1
|
|
Property Should Be Equal .network.container[0].gateway.routing_destinations[0] 203.0.113.1/24
|
|
|
|
Property Should Be Equal .network.public.gateway.address 192.168.100.1
|
|
Property Should Be Equal .network.public.nameservers[0] 192.168.110.10
|
|
Property Should Be Equal .network.public.nameservers[1] 192.168.1.1
|
|
|
|
Property Should Be Equal .runtime.power_state poweredOn
|
|
Property Should Be Equal .runtime.upgrade_status Up to date
|
|
|
|
Property Should Be Equal .container.name_convention container-{id}
|
|
|
|
|
|
[Teardown] Run Secret VIC Machine Delete Command %{VCH-NAME}-api-test-complex
|
|
|
|
|
|
Fail to create VCH with invalid operations credentials
|
|
Create VCH '{"name":"%{VCH-NAME}-api-bad-ops","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"endpoint":{"operations_credentials":{"user":"invalid","password":"invalid"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Bad Request
|
|
|
|
Output Should Contain operations credentials
|
|
|
|
|
|
Fail to create VCH with invalid datastore
|
|
Create VCH '{"name":"%{VCH-NAME}-api-bad-storage","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}-invalid"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Bad Request
|
|
|
|
Output Should Contain datastore
|
|
|
|
|
|
Fail to create VCH with invalid compute
|
|
Create VCH '{"name":"%{VCH-NAME}-api-bad-compute","compute":{"resource":{"name":"%{TEST_RESOURCE}-invalid"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Bad Request
|
|
|
|
Output Should Contain compute resource
|
|
|
|
|
|
Fail to create VCH without network
|
|
Create VCH '{"name":"%{VCH-NAME}-api-bad-network","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Bad Request
|
|
|
|
Output Should Contain network
|
|
|
|
|
|
Fail to create VCH with gateway without static address
|
|
Create VCH '{"name":"%{VCH-NAME}-api-bad-gateway","compute":{"resource":{"name":"%{TEST_RESOURCE}"}},"storage":{"image_stores":["ds://%{TEST_DATASTORE}"]},"network":{"bridge":{"ip_range":"172.16.0.0/12","port_group":{"name":"%{BRIDGE_NETWORK}"}},"public":{"port_group":{"name":"${PUBLIC_NETWORK}"},"gateway":{"address":"127.0.0.1","routing_destinations":[]}}},"auth":{"server":{"generate":{"cname":"vch.example.com","organization":["VMware, Inc."],"size":{"value":2048,"units":"bits"}}},"client":{"no_tls_verify": true}}}'
|
|
|
|
Verify Return Code
|
|
Verify Status Bad Request
|
|
|
|
Output Should Contain static
|