diff --git a/README.rst b/README.rst index 86e5a88f..95216435 100644 --- a/README.rst +++ b/README.rst @@ -27,15 +27,15 @@ refstack-client, that helps to verify interoperability of their cloud with other OpenStack clouds. It does so by validating any cloud implementation against the OpenStack Tempest API tests. -**RefStack and DefCore** - The prototypical use case for RefStack provides -the DefCore Committee the tools for vendors and other users to run API -tests against their clouds to provide the DefCore committee with a reliable -overview of what APIs and capabilities are being used in the marketplace. -This will help to guide the DefCore-defined capabilities and help ensure -interoperability across the entire OpenStack ecosystem. It can also -be used to validate clouds against existing DefCore capability lists, -giving you assurance that your cloud faithfully implements OpenStack -standards. +**RefStack and Interop Working Group** - The prototypical use case for RefStack +provides the Interop Working Group - formerly known as DefCore committee - the +tools for vendors and other users to run API tests against their clouds to +provide the WG with a reliable overview of what APIs and capabilities are +being used in the marketplace. This will help to guide the Interop +Working Group defined capabilities and help ensure interoperability across +the entire OpenStack ecosystem. It can also be used to validate clouds +against existing capability lists, giving you assurance that your cloud +faithfully implements OpenStack standards. **Value add for vendors** - Vendors can use RefStack to demonstrate that their distros, and/or their customers' installed clouds remain with OpenStack @@ -53,7 +53,8 @@ after their software has been incorporated into the distro or cloud. * reviews: https://review.openstack.org/#q,status:open+refstack,n,z * **refstack-client** - refstack-client contains the tools you will need to run the DefCore tests. + refstack-client contains the tools you will need to run the + Interop Working Group tests. * repository: http://git.openstack.org/cgit/openstack/refstack-client * reviews: https://review.openstack.org/#q,status:open+refstack-client,n,z diff --git a/etc/refstack.conf.sample b/etc/refstack.conf.sample index bb349fe3..00d6cf32 100644 --- a/etc/refstack.conf.sample +++ b/etc/refstack.conf.sample @@ -139,15 +139,15 @@ # Template for test result url. (string value) #test_results_url = /#/results/%s -# The GitHub API URL of the repository and location of the DefCore -# capability files. This URL is used to get a listing of all -# capability files. (string value) -#github_api_capabilities_url = https://api.github.com/repos/openstack/defcore/contents +# The GitHub API URL of the repository and location of the +# Interop Working Group capability files. +# This URL is used to get a listing of all capability files. (string value) +#github_api_capabilities_url = https://api.github.com/repos/openstack/interop/contents # This is the base URL that is used for retrieving specific capability # files. Capability file names will be appended to this URL to get the # contents of that file. (string value) -#github_raw_base_url = https://raw.githubusercontent.com/openstack/defcore/master/ +#github_raw_base_url = https://raw.githubusercontent.com/openstack/interop/master/ # Number of results for one page (integer value) #results_per_page = 20 diff --git a/refstack-ui/app/components/guidelines/guidelines.html b/refstack-ui/app/components/guidelines/guidelines.html index 06ba6e3a..1dd39ff1 100644 --- a/refstack-ui/app/components/guidelines/guidelines.html +++ b/refstack-ui/app/components/guidelines/guidelines.html @@ -1,4 +1,4 @@ -
Tests marked with are tests flagged by DefCore.
+Tests marked with are tests flagged by Interop Working Group.
diff --git a/refstack-ui/app/components/guidelines/guidelinesController.js b/refstack-ui/app/components/guidelines/guidelinesController.js index 2153911d..7236d873 100644 --- a/refstack-ui/app/components/guidelines/guidelinesController.js +++ b/refstack-ui/app/components/guidelines/guidelinesController.js @@ -24,7 +24,7 @@ /** * RefStack Guidelines Controller * This controller is for the '/guidelines' page where a user can browse - * through tests belonging to DefCore-defined capabilities. + * through tests belonging to Interop WG defined capabilities. */ function GuidelinesController($http, $uibModal, refstackApiUrl) { var ctrl = this; @@ -99,7 +99,7 @@ /** * This will update the scope's 'targetCapabilities' object with * capabilities belonging to the selected OpenStack marketing program - * (programs typically correspond to 'components' in the DefCore + * (programs typically correspond to 'components' in the Interop WG * schema). Each capability will have its status mapped to it. */ function updateTargetCapabilities() { @@ -227,7 +227,7 @@ /** * Test List Modal Controller * This controller is for the modal that appears if a user wants to see the - * test list corresponding to DefCore capabilities with the selected + * test list corresponding to Interop WG capabilities with the selected * statuses. */ function TestListModalController($uibModalInstance, $http, version, diff --git a/refstack-ui/app/components/guidelines/partials/guidelineDetails.html b/refstack-ui/app/components/guidelines/partials/guidelineDetails.html index c0a9f49b..f020c9a0 100644 --- a/refstack-ui/app/components/guidelines/partials/guidelineDetails.html +++ b/refstack-ui/app/components/guidelines/partials/guidelineDetails.html @@ -1,5 +1,5 @@ diff --git a/refstack-ui/app/components/guidelines/partials/testListModal.html b/refstack-ui/app/components/guidelines/partials/testListModal.html index cd57ea0b..46813f6f 100644 --- a/refstack-ui/app/components/guidelines/partials/testListModal.html +++ b/refstack-ui/app/components/guidelines/partials/testListModal.html @@ -3,7 +3,7 @@Use this test list with refstack-client - to run only tests in the {{modal.version}} DefCore guideline from capabilities with the following statuses: + to run only tests in the {{modal.version}} OpenStack Powered™ guideline from capabilities with the following statuses:
See how these results stack up against DefCore capabilities and OpenStack +
See how these results stack up against Interop Working Group capabilities and OpenStack target marketing programs.
diff --git a/refstack-ui/app/components/results-report/resultsReportController.js b/refstack-ui/app/components/results-report/resultsReportController.js index 68108853..158abb55 100644 --- a/refstack-ui/app/components/results-report/resultsReportController.js +++ b/refstack-ui/app/components/results-report/resultsReportController.js @@ -61,7 +61,7 @@ /** The target OpenStack marketing program to compare against. */ ctrl.target = 'platform'; - /** Mappings of DefCore components to marketing program names. */ + /** Mappings of Interop WG components to marketing program names. */ ctrl.targetMappings = { 'platform': 'Openstack Powered Platform', 'compute': 'OpenStack Powered Compute', @@ -494,7 +494,7 @@ // Return a generic message since schema 1.2 does not // provide flag reasons. - return 'DefCore has flagged this test.'; + return 'Interop Working Group has flagged this test.'; } else if ((ctrl.schemaVersion >= '1.3') && (ctrl.isTestFlagged(test, capObj))) { diff --git a/refstack-ui/app/components/results/resultsController.js b/refstack-ui/app/components/results/resultsController.js index 7b4aed11..14ebbb25 100644 --- a/refstack-ui/app/components/results/resultsController.js +++ b/refstack-ui/app/components/results/resultsController.js @@ -43,7 +43,7 @@ ctrl.getProductVersions = getProductVersions; ctrl.prepVersionEdit = prepVersionEdit; - /** Mappings of DefCore components to marketing program names. */ + /** Mappings of Interop WG components to marketing program names. */ ctrl.targetMappings = { 'platform': 'Openstack Powered Platform', 'compute': 'OpenStack Powered Compute', diff --git a/refstack-ui/app/shared/header/header.html b/refstack-ui/app/shared/header/header.html index 5dcf09a6..d94390fb 100644 --- a/refstack-ui/app/shared/header/header.html +++ b/refstack-ui/app/shared/header/header.html @@ -17,7 +17,7 @@ RefStack