12 Commits

Author SHA1 Message Date
9fb0bd7bc2 Fix is_global
All checks were successful
gl/check check status: success (9fb0bd7bc205d62f10b65024ad26b68b1c5ee0c8)
gl/gate gate status: success (9fb0bd7bc205d62f10b65024ad26b68b1c5ee0c8)
2025-05-23 12:30:16 +00:00
3eed651f11 Fix is_global
All checks were successful
gl/check check status: success (3eed651f11d11d36f6c07e5382f4c8df0bd83ffc)
2025-05-23 12:22:29 +00:00
5688aa9fa9 Update requirements
Reviewed-by: Tino Schreiber <tino.schreiber@t-systems.com>
Co-authored-by: Sebastian Gode <sebastian.gode@telekom.de>
Co-committed-by: Sebastian Gode <sebastian.gode@telekom.de>
2025-05-23 08:11:53 +00:00
483dd1ba13 Update 3rd_party-python-sdk
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Sebastian Gode <sebastian.gode@telekom.de>
Co-committed-by: Sebastian Gode <sebastian.gode@telekom.de>
2025-05-23 08:05:22 +00:00
9c91fde599 Rename Application Services to Application according to OTC console
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: Tino Schreiber <tino.schreiber@t-systems.com>
Co-committed-by: Tino Schreiber <tino.schreiber@t-systems.com>
2025-05-20 09:16:16 +00:00
7d4aacf61d Docs constraints new architecture
Reviewed-by: Tino Schreiber <tino.schreiber@t-systems.com>
Co-authored-by: Sebastian Gode <sebastian.gode@telekom.de>
Co-committed-by: Sebastian Gode <sebastian.gode@telekom.de>
2025-05-15 11:11:16 +00:00
a41f77df9a Fix issue 2025-05-05 13:02:49 +00:00
c2a89cf6b1 Fix update_zuul 2025-04-30 12:22:17 +00:00
bf825ffdaa remove testservice 2025-04-30 09:18:33 +00:00
6960b72f63 Fix aom-api-ref 2025-04-30 09:17:42 +00:00
d7868e7d72 fix taurusdb 2025-04-30 09:14:50 +00:00
28e651dffb test 2025-04-30 09:13:18 +00:00
14 changed files with 32 additions and 84 deletions

View File

@ -1,11 +1,11 @@
--- ---
hc_location: usermanual/aom hc_location: api/aom
html_location: docs/aom/umn html_location: docs/aom/api-ref
link: /application-operations-management/umn/ link: /application-operations-management/api-ref/
rst_location: umn/source rst_location: api-ref/source
service_type: aom service_type: aom
title: User Guide title: API Reference
type: umn type: api-ref
cloud_environments: cloud_environments:
- name: eu_de - name: eu_de
visibility: public visibility: public

View File

@ -5,7 +5,7 @@ link: /object-storage-service-3rd-party/python-sdk/
rst_location: doc/python-sdk/source rst_location: doc/python-sdk/source
service_type: obs_3rd_party service_type: obs_3rd_party
title: Python SDK title: Python SDK
type: 3rd_party_sdk type: python-sdk
cloud_environments: cloud_environments:
- name: eu_de - name: eu_de
visibility: public visibility: public

View File

@ -2,6 +2,7 @@
hc_location: usermanual/taurusdb hc_location: usermanual/taurusdb
html_location: docs/taurusdb/umn html_location: docs/taurusdb/umn
link: /taurusdb/umn/ link: /taurusdb/umn/
rst_location: umn/source
pdf_enabled: true pdf_enabled: true
service_type: taurusdb service_type: taurusdb
title: User Guide title: User Guide

View File

@ -1,13 +0,0 @@
---
hc_location: usermanual/testservice
html_location: docs/testservice/api-ref
link: /testservice/api-ref/
rst_location: api-ref/source
service_type: testservice
title: User Guide
type: api-ref
cloud_environments:
- name: swiss
visibility: public
pdf_visibility: public
pdf_enabled: true

View File

@ -1,13 +0,0 @@
---
hc_location: usermanual/testservice
html_location: docs/testservice/umn
link: /testservice/umn/
rst_location: umn/source
service_type: testservice
title: User Guide
type: umn
cloud_environments:
- name: eu_de
visibility: public
pdf_visibility: public
pdf_enabled: true

View File

@ -5,9 +5,9 @@ repositories:
repo: opentelekomcloud-docs/glossary repo: opentelekomcloud-docs/glossary
type: github type: github
cloud_environments: cloud_environments:
- - eu_de
- environment: internal - environment: internal
repo: docs/glossary repo: docs/glossary
type: gitea type: gitea
cloud_environments: cloud_environments:
- - eu_de

View File

@ -1,13 +0,0 @@
---
service_type: testservice
repositories:
- environment: public
repo: opentelekomcloud-docs/testservice
type: github
cloud_environments:
- eu_de
- environment: internal
repo: docs/testservice
type: gitea
cloud_environments:
- eu_de

View File

@ -1,3 +1,3 @@
--- ---
name: application name: application
title: Application Services title: Application

View File

@ -1,14 +0,0 @@
---
environment: public
is_global: false
service_category: security-services
service_title: Test Service
service_type: testservice
service_uri: testservice
cloud_environments:
- name: eu_de
visibility: internal
teams:
- name: docs-security-services-rw
permission: write
is_global: false

View File

@ -13,7 +13,6 @@
import copy import copy
import warnings import warnings
import json
import otc_metadata.data import otc_metadata.data
@ -104,6 +103,11 @@ class Services(object):
for srv in self.all_services: for srv in self.all_services:
if environment and cloud_environment: if environment and cloud_environment:
cloud_environment_check = False cloud_environment_check = False
if srv["is_global"] is True:
if srv["environment"] == environment:
cloud_environment_check = True
else:
continue
if srv["is_global"] is not True: if srv["is_global"] is not True:
for srv_cloud_environment in srv["cloud_environments"]: for srv_cloud_environment in srv["cloud_environments"]:
if srv_cloud_environment["name"] == cloud_environment: if srv_cloud_environment["name"] == cloud_environment:
@ -151,7 +155,7 @@ class Services(object):
continue continue
for repositories in self.all_repositories: for repositories in self.all_repositories:
if repositories["service_type"] == service["service_type"]: if repositories["service_type"] == service["service_type"]:
res["repositories"] = repositories["repositories"] res[cat]["repositories"] = repositories["repositories"]
res[cat].setdefault("docs", []) res[cat].setdefault("docs", [])
res[cat]["docs"].append(res_doc) res[cat]["docs"].append(res_doc)
return res return res

View File

@ -11,10 +11,6 @@ reno>=3.1.0 # Apache-2.0
otc-sphinx-directives>=0.1.0 otc-sphinx-directives>=0.1.0
sphinx-minify>=0.0.1 # Apache-2.0 sphinx-minify>=0.0.1 # Apache-2.0
{% if otcdocs_cloud_environment == 'eu_de' %} git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata-rework.git#egg=otc_metadata
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
{% elif otcdocs_cloud_environment == 'swiss' %}
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata-swiss.git#egg=otc_metadata
{% endif %}
setuptools setuptools
gitpython gitpython

View File

@ -28,7 +28,7 @@ commands = {posargs}
[testenv:docs] [testenv:docs]
deps = deps =
-r{toxinidir}/doc/requirements.txt -r{toxinidir}/doc/requirements.txt
-c https://raw.githubusercontent.com/opentelekomcloud-docs/docs-constraints/main/constraints.txt -c https://raw.githubusercontent.com/opentelekomcloud-docs/docs-constraints/main/constraints/{{otcdocs_cloud_environment}}/{{target_environment}}/constraints.txt
allowlist_externals = allowlist_externals =
mkdir mkdir
cp cp

View File

@ -170,7 +170,7 @@ def process_repositories(args, service):
if target_repo.get("type") != "github": if target_repo.get("type") != "github":
context["git_type"] = target_repo["type"] context["git_type"] = target_repo["type"]
if (args.target_environment == "public" if (args.target_environment == "public"
and args.cloud_environment == "swiss"): and args.cloud_environment == "swiss"):
context["html_options"] = dict( context["html_options"] = dict(
logo_url="https://docs.sc.otc.t-systems.com", logo_url="https://docs.sc.otc.t-systems.com",
) )
@ -183,7 +183,7 @@ def process_repositories(args, service):
context["otcdocs_search_environment"] = "hc_de" context["otcdocs_search_environment"] = "hc_de"
context["otcdocs_search_index"] = "search_index_de" context["otcdocs_search_index"] = "search_index_de"
elif (args.target_environment == "internal" elif (args.target_environment == "internal"
and args.cloud_environment == "swiss"): and args.cloud_environment == "swiss"):
context["html_options"] = dict( context["html_options"] = dict(
disable_search=True, disable_search=True,
site_name="Internal Documentation Portal", site_name="Internal Documentation Portal",
@ -348,11 +348,11 @@ def process_repositories(args, service):
if cloud_environment["name"] == args.cloud_environment: if cloud_environment["name"] == args.cloud_environment:
if doc["type"] == "dev": if doc["type"] == "dev":
doc["type"] = "dev-guide" doc["type"] = "dev-guide"
if cloud_environment["name"] == "swiss":
context["template"] = "helpcenter-swiss-base-jobs"
elif cloud_environment["name"] == "eu_de":
context["template"] = "helpcenter-base-jobs"
context["docs"].append(doc) context["docs"].append(doc)
if args.cloud_environment == "swiss":
context["template"] = "helpcenter-swiss-base-jobs"
elif args.cloud_environment == "eu_de":
context["template"] = "helpcenter-base-jobs"
context["service_type"] = service['service_type'] context["service_type"] = service['service_type']
zuul_yaml_content = zuul_yaml_template.render(**context) zuul_yaml_content = zuul_yaml_template.render(**context)

View File

@ -24,7 +24,7 @@ def main():
data = otc_metadata.services.Services() data = otc_metadata.services.Services()
data._sort_data() data._sort_data()
docs = data.docs_html_by_category(environment="internal",cloud_environment=args.cloud_environment) docs = data.docs_html_by_category(environment="internal", cloud_environment=args.cloud_environment)
# Filter out documents with "disable_import": True # Filter out documents with "disable_import": True
for category, services in docs['categories'].items(): for category, services in docs['categories'].items():