Compare commits
3 Commits
sd_iam_add
...
constraint
Author | SHA1 | Date | |
---|---|---|---|
f4506b2141 | |||
6caf290136 | |||
c7c190f0a3 |
8
otc_metadata/data/documents/iam-permissions.yaml
Normal file
8
otc_metadata/data/documents/iam-permissions.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
html_location: docs/iam/permissions
|
||||||
|
link: /identity-access-management/permissions/
|
||||||
|
pdf_name: iam-permissions
|
||||||
|
rst_location: doc/permissions/source
|
||||||
|
service_type: iam
|
||||||
|
title: Permissions
|
||||||
|
type: permissions
|
9
otc_metadata/data/documents/sd-umn.yaml
Normal file
9
otc_metadata/data/documents/sd-umn.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/sd
|
||||||
|
html_location: docs/sd/umn
|
||||||
|
link: /status-dashboard/umn/
|
||||||
|
pdf_name: sd-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: sd
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
16
otc_metadata/data/services/sd.yaml
Normal file
16
otc_metadata/data/services/sd.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
repositories:
|
||||||
|
- environment: internal
|
||||||
|
repo: docs-swiss/status-dashboard
|
||||||
|
type: gitea
|
||||||
|
- environment: public
|
||||||
|
repo: opentelekomcloud-docs-swiss/status-dashboard
|
||||||
|
type: github
|
||||||
|
service_category: other
|
||||||
|
service_title: Status Dashboard
|
||||||
|
service_type: sd
|
||||||
|
service_uri: status-dashboard/umn
|
||||||
|
environment: hidden
|
||||||
|
teams:
|
||||||
|
- name: docs-eco-rw
|
||||||
|
permission: write
|
@ -24,7 +24,9 @@ commands = {posargs}
|
|||||||
# This env is invoked in the periodic pipeline and is therefore responsible to
|
# This env is invoked in the periodic pipeline and is therefore responsible to
|
||||||
# build all relevant docs at once.
|
# build all relevant docs at once.
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps =
|
||||||
|
-r{toxinidir}/doc/requirements.txt
|
||||||
|
-c https://raw.githubusercontent.com/opentelekomcloud-docs-swiss/docs-constraints/main/constraints.txt
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
mkdir
|
mkdir
|
||||||
cp
|
cp
|
||||||
@ -40,7 +42,7 @@ commands =
|
|||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
||||||
[testenv:docs-pdf]
|
[testenv:docs-pdf]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = {[testenv:docs]deps}
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
rm
|
rm
|
||||||
mkdir
|
mkdir
|
||||||
@ -59,7 +61,7 @@ commands =
|
|||||||
{% set loc = doc.rst_location | replace('/source', '') %}
|
{% set loc = doc.rst_location | replace('/source', '') %}
|
||||||
# HTML version
|
# HTML version
|
||||||
[testenv:{{ doc.type }}]
|
[testenv:{{ doc.type }}]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = {[testenv:docs]deps}
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
cp
|
cp
|
||||||
mkdir
|
mkdir
|
||||||
@ -78,7 +80,7 @@ commands =
|
|||||||
|
|
||||||
# Json version (for search)
|
# Json version (for search)
|
||||||
[testenv:json-{{ doc.type }}]
|
[testenv:json-{{ doc.type }}]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = {[testenv:docs]deps}
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
cp
|
cp
|
||||||
mkdir
|
mkdir
|
||||||
@ -102,7 +104,7 @@ commands =
|
|||||||
{% if doc.pdf_name -%}
|
{% if doc.pdf_name -%}
|
||||||
# PDF version
|
# PDF version
|
||||||
[testenv:{{ doc.type }}-pdf-docs]
|
[testenv:{{ doc.type }}-pdf-docs]
|
||||||
deps = -r{toxinidir}/doc/requirements.txt
|
deps = {[testenv:docs]deps}
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
rm
|
rm
|
||||||
mkdir
|
mkdir
|
||||||
|
@ -10,6 +10,7 @@ import otc_metadata.services
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
data = otc_metadata.services.Services()
|
data = otc_metadata.services.Services()
|
||||||
|
data._sort_data()
|
||||||
|
|
||||||
_yaml = YAML()
|
_yaml = YAML()
|
||||||
_yaml.indent(mapping=2, sequence=4, offset=2)
|
_yaml.indent(mapping=2, sequence=4, offset=2)
|
||||||
|
Reference in New Issue
Block a user