[www] Update database
Watcher does not have anymore an in-tree api document at https://docs.openstack.org/watcher/latest/api/index.html, remove the setting so that this repo builds again. Update script to handle the foundation-board-repos list to silence warning about refstack. Change-Id: I1e7753f2cb4a370634f1f16d859fe9be137c9421
This commit is contained in:
parent
da06d71409
commit
2a2e0ac9c1
@ -405,6 +405,7 @@ def load_project_data(source_directory,
|
|||||||
|
|
||||||
_GOVERNANCE_URL = 'http://git.openstack.org/cgit/openstack/governance/plain/reference/projects.yaml' # noqa
|
_GOVERNANCE_URL = 'http://git.openstack.org/cgit/openstack/governance/plain/reference/projects.yaml' # noqa
|
||||||
_GOVERNANCE_SIGS_URL = 'http://git.openstack.org/cgit/openstack/governance/plain/reference/sigs-repos.yaml' # noqa
|
_GOVERNANCE_SIGS_URL = 'http://git.openstack.org/cgit/openstack/governance/plain/reference/sigs-repos.yaml' # noqa
|
||||||
|
_GOVERNANCE_FOUNDATION_URL = 'http://git.openstack.org/cgit/openstack/governance/plain/reference/foundation-board-repos.yaml' # noqa
|
||||||
_IGNORED_REPOS = [
|
_IGNORED_REPOS = [
|
||||||
'openstack/releases',
|
'openstack/releases',
|
||||||
'openstack-infra/releasestatus',
|
'openstack-infra/releasestatus',
|
||||||
@ -470,7 +471,8 @@ def _get_official_repos():
|
|||||||
# name:
|
# name:
|
||||||
# - repo: name
|
# - repo: name
|
||||||
#
|
#
|
||||||
raw = requests.get(_GOVERNANCE_SIGS_URL)
|
for url in [_GOVERNANCE_SIGS_URL, _GOVERNANCE_FOUNDATION_URL]:
|
||||||
|
raw = requests.get(url)
|
||||||
data = yaml.safe_load(raw.text)
|
data = yaml.safe_load(raw.text)
|
||||||
for sig_name, sig_data in data.items():
|
for sig_name, sig_data in data.items():
|
||||||
for repo in sig_data:
|
for repo in sig_data:
|
||||||
|
@ -403,7 +403,6 @@
|
|||||||
service: Infrastructure Optimization service
|
service: Infrastructure Optimization service
|
||||||
service_type: resource-optimization
|
service_type: resource-optimization
|
||||||
type: service
|
type: service
|
||||||
has_in_tree_api_docs: true
|
|
||||||
has_install_guide: true
|
has_install_guide: true
|
||||||
has_admin_guide: true
|
has_admin_guide: true
|
||||||
has_user_guide: true
|
has_user_guide: true
|
||||||
|
Loading…
Reference in New Issue
Block a user