forked from openshift/rhc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into update_to_new_plan_…
…values
- Loading branch information
Showing
27 changed files
with
511 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
Summary: OpenShift client management tools | ||
Name: rhc | ||
Version: 1.6.2 | ||
Version: 1.6.5 | ||
Release: 1%{?dist} | ||
Group: Network/Daemons | ||
License: ASL 2.0 | ||
|
@@ -100,6 +100,20 @@ rm -rf $RPM_BUILD_ROOT | |
%attr(0644,-,-) /etc/bash_completion.d/rhc | ||
|
||
%changelog | ||
* Mon Mar 25 2013 Adam Miller <[email protected]> 1.6.5-1 | ||
- Minor bug fixes ([email protected]) | ||
- Minor bug fixes and typos ([email protected]) | ||
- Minor bug fixes and typos ([email protected]) | ||
- Card #239: Added support to alias creation and deletion and SSL certificate | ||
upload to the CLI ([email protected]) | ||
|
||
* Thu Mar 21 2013 Adam Miller <[email protected]> 1.6.4-1 | ||
- Updates to enable RHC extended tests to run on Fedora 18 ([email protected]) | ||
|
||
* Mon Mar 18 2013 Adam Miller <[email protected]> 1.6.3-1 | ||
- Display the duration of http requests in the debug output | ||
([email protected]) | ||
|
||
* Thu Mar 14 2013 Adam Miller <[email protected]> 1.6.2-1 | ||
- Merge pull request #332 from jtharris/highline_fix ([email protected]) | ||
- Merge pull request #331 from BanzaiMan/dev/hasari/bz920028 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
@geared_application @geared_user_required @domain_required | ||
Feature: Scaled Application Operations | ||
|
||
@init | ||
@init @not-origin | ||
Scenario: Geared Application Creation | ||
When a php-5.3 application is created with a medium gear | ||
When a php application is created with a medium gear | ||
Then the application should be accessible | ||
Then the application should have a medium gear | ||
|
||
|
||
|
||
Then the application should have a medium gear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
if File.exist?("/etc/fedora-release") | ||
CARTRIDGE_MAP = { | ||
"php" => { type: "php-5.4", name: "PHP 5.4" }, | ||
"mysql" => { type: "mysql-5.1", name: "MySQL Database 5.1" }, | ||
"phpmyadmin" => { type: "phpmyadmin-3.5", name: "phpMyAdmin 3.5" }, | ||
"mongodb" => { type: "mongodb-2.2", name: "MongoDB NoSQL Database 2.2" }, | ||
"postgresql" => { type: "postgresql-9.2", name: "PostgreSQL Database 9.2" }, | ||
"cron" => { type: "cron-1.4", name: "Cron 1.4" }, | ||
"haproxy" => { type: "haproxy-1.4", name: "" } | ||
} | ||
else | ||
CARTRIDGE_MAP = { | ||
"php" => { type: "php-5.3", name: "PHP 5.3" }, | ||
"mysql" => { type: "mysql-5.1", name: "MySQL Database 5.1" }, | ||
"phpmyadmin" => { type: "phpmyadmin-3.4", name: "phpMyAdmin 3.4" }, | ||
"mongodb" => { type: "mongodb-2.2", name: "MongoDB NoSQL Database 2.2" }, | ||
"postgresql" => { type: "postgresql-8.4", name: "PostgreSQL Database 8.4" }, | ||
"cron" => { type: "cron-1.4", name: "Cron 1.4" }, | ||
"haproxy" => { type: "haproxy-1.4", name: "" } | ||
} | ||
end | ||
|
||
def map_cartridge_type(type) | ||
CARTRIDGE_MAP[type][:type] | ||
end | ||
|
||
def map_cartridge_name(type) | ||
CARTRIDGE_MAP[type][:name] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.