4 Commits

Author SHA1 Message Date
91e9962846 change service category to compute
All checks were successful
gl/check check status: success (91e99628462ed0b4dea8c9ac2d71e4220456ef0f)
gl/gate gate status: success (91e99628462ed0b4dea8c9ac2d71e4220456ef0f)
2025-06-11 08:12:51 +00:00
0147b46518 add overview README file
All checks were successful
gl/check check status: success (0147b46518dad6c219884b247db56ac436236b95)
2025-06-11 08:09:58 +00:00
a47e2a9d87 README.md files added documenting the metadata dependencies and usage
All checks were successful
gl/check check status: success (a47e2a9d87081c668fcb5b5ce9d90bd52c14018f)
2025-06-11 08:02:59 +00:00
f0db6132bb describe metadata overview
All checks were successful
gl/check check status: success (f0db6132bb80e23e1f1d38ca608df69d31205d90)
2025-06-10 13:45:41 +00:00
7 changed files with 2 additions and 56 deletions

View File

@ -8,10 +8,10 @@ title: Permissions
type: permissions type: permissions
cloud_environments: cloud_environments:
- name: eu_de - name: eu_de
visibility: public visibility: internal
pdf_visibility: public pdf_visibility: public
pdf_enabled: true pdf_enabled: true
- name: swiss - name: swiss
visibility: public visibility: internal
pdf_visibility: public pdf_visibility: public
pdf_enabled: true pdf_enabled: true

View File

@ -1,13 +0,0 @@
---
hc_location: api/ucs
html_location: docs/ucs/api-ref
link: /ubiquitous-cloud-native-service/api-ref/
rst_location: api-ref/source
service_type: ucs
title: API Reference
type: api-ref
cloud_environments:
- name: eu_de
visibility: internal
pdf_visibility: internal
pdf_enabled: true

View File

@ -1,13 +0,0 @@
---
hc_location: usermanual/ucs
html_location: docs/ucs/umn
link: /ubiquitous-cloud-native-service/umn/
rst_location: umn/source
service_type: ucs
title: User Guide
type: umn
cloud_environments:
- name: eu_de
visibility: internal
pdf_visibility: internal
pdf_enabled: true

View File

@ -1,13 +0,0 @@
---
service_type: ucs
repositories:
- environment: public
repo: opentelekomcloud-docs/ubiquitous-cloud-native-service
type: github
cloud_environments:
- eu_de
- environment: internal
repo: docs/ubiquitous-cloud-native-service
type: gitea
cloud_environments:
- eu_de

View File

@ -1,12 +0,0 @@
---
is_global: false
service_category: container
service_title: Ubiquitous Cloud Native Service
service_type: ucs
service_uri: ubiquitous-cloud-native-service
cloud_environments:
- name: eu_de
visibility: internal
teams:
- name: docs-container-rw
permission: write

View File

@ -47,7 +47,6 @@ otcdocs_doc_type = '{{ doc_type }}'
otcdocs_service_category = '{{ service_category }}' otcdocs_service_category = '{{ service_category }}'
otcdocs_service_title = '{{ service_title }}' otcdocs_service_title = '{{ service_title }}'
otcdocs_service_type = '{{ service_type }}' otcdocs_service_type = '{{ service_type }}'
otcdocs_service_environment = '{{ service_environment }}'
otcdocs_cloud_environment = '{{ otcdocs_cloud_environment }}' otcdocs_cloud_environment = '{{ otcdocs_cloud_environment }}'
otcdocs_search_environment = '{{ otcdocs_search_environment }}' otcdocs_search_environment = '{{ otcdocs_search_environment }}'
otcdocs_search_index = '{{ otcdocs_search_index }}' otcdocs_search_index = '{{ otcdocs_search_index }}'

View File

@ -215,7 +215,6 @@ def process_repositories(args, service):
context["service_category"] = service['service_category'] context["service_category"] = service['service_category']
context["service_title"] = service['service_title'] context["service_title"] = service['service_title']
context["service_type"] = service['service_type'] context["service_type"] = service['service_type']
context["service_environment"] = args.target_environment
context["otcdocs_cloud_environment"] = args.cloud_environment context["otcdocs_cloud_environment"] = args.cloud_environment
conf_py_content = conf_py_template.render(**context) conf_py_content = conf_py_template.render(**context)
@ -277,7 +276,6 @@ def process_repositories(args, service):
context["otcdocs_search_index"] = "search_index_de" context["otcdocs_search_index"] = "search_index_de"
context["environment"] = args.target_environment context["environment"] = args.target_environment
context["otcdocs_cloud_environment"] = args.cloud_environment context["otcdocs_cloud_environment"] = args.cloud_environment
context["service_environment"] = args.target_environment
sbv_title = (service["service_title"] + "\n" sbv_title = (service["service_title"] + "\n"
+ ('=' * len(service["service_title"]))) + ('=' * len(service["service_title"])))
context["sbv_title"] = sbv_title context["sbv_title"] = sbv_title