Merge "Disable RHOS for 4.1 release"

This commit is contained in:
Jenkins 2014-02-24 14:22:07 +00:00 committed by Gerrit Code Review
commit 34169fd460
2 changed files with 0 additions and 78 deletions

View File

@ -567,35 +567,6 @@
- data: "kernel_ml"
label: "EXPERIMENTAL: Use Fedora mainline kernel"
description: "Install the Fedora 3.11 mainline kernel instead of the default 2.6.32 kernel. This should remove any need for VLAN Splinters workarounds as the 3.11 kernel has better support for OVS VLANs. This kernel may not work with all hardware platforms, use caution."
- pk: 2
extend: *base_release
fields:
name: "RHOS 3.0 for RHEL 6.4"
version: "2013.1.2"
operating_system: "RHEL"
description: "This option will install the Red Hat Enterprise Linux OpenStack Platform using RHEL as a base operating system. With high availability features built in, you are getting a robust enterprise-grade OpenStack deployment."
state: "not_available"
modes_metadata:
ha_compact:
description: "This configuration requires multiple OpenStack controllers (3+) and provides high availability for all OpenStack components, including MySQL, QPID, and Cinder, as well as OpenStack API services. Select this configuration if you want to build a production-grade OpenStack cloud with 6 nodes or more."
attributes_metadata:
generated:
savanna:
enabled: false
heat:
enabled: false
murano:
enabled: false
storage:
volumes_lvm: true
volumes_ceph: false
images_ceph: false
objects_ceph: false
ephemeral_ceph: false
osd_pool_size: "2"
cobbler:
profile:
generator_arg: "rhel-x86_64"
- pk: 3
extend: *full_release
fields:

View File

@ -1,49 +0,0 @@
/*
* Copyright 2013 Mirantis, Inc.
*
* 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.
**/
casper.start().loadPage('#releases');
casper.then(function() {
this.test.comment('Testing releases page layout');
this.test.assertEvalEquals(function() {return $('.releases-table tbody tr').length}, 3, 'There are three releases presented');
this.test.assertSelectorAppears('.releases-table .not_available', 'There is unavailable release');
});
casper.then(function() {
this.test.comment('Testing release downloading');
this.click('.btn-rhel-setup');
this.test.assertSelectorAppears('.modal', 'RHEL credentials popup appears');
this.then(function() {
this.test.assertExists('.modal input[value=rhsm]:checked', 'RHSM license type is chosen');
this.test.assertEvalEquals(function() {return $('.modal fieldset input:visible').length}, 2, 'RHSM license type credentials fields are presented');
this.click('.modal input[type=radio]:not(:checked)');
this.test.assertExists('.modal input[value=rhn]:checked', 'RHN license type is chosen');
this.test.assertEvalEquals(function() {return $('.modal fieldset input').length}, 4, 'RHN license type credentials fields are presented');
this.click('.modal .btn-os-download');
this.click('.modal input[type=radio]:not(:checked)');
this.fill('.modal form.rhel-license', {'username': 'rheltest', 'password': 'password'});
this.click('.modal .btn-os-download');
});
this.test.assertSelectorDisappears('.modal', 'RHEL credentials popup was closed');
this.test.assertSelectorAppears('.progress', 'RHEL downloading started');
this.test.assertSelectorDisappears('.progress', 'RHEL downloading finished', 20000);
this.then(function() {
this.test.assertDoesntExist('.releases-table .not_available', 'All releases are available');
});
});
casper.run(function() {
this.test.done();
});