Compare commits

..

9 Commits

Author SHA1 Message Date
1c8702427b Fixing missing env entry
All checks were successful
gl/check check status: success (1c8702427b41ef57573d4dc371d813ce13ffbe6b)
gl/gate gate status: success (1c8702427b41ef57573d4dc371d813ce13ffbe6b)
2024-07-23 09:04:46 +00:00
a9ae65958d Set environment for SBV internally automatically to internal
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
2024-07-23 06:58:32 +00:00
3ae8e7a8be mkp-public
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Meshki, Abalfazl <a200263171@noreply.gitea.eco.tsi-dev.otc-service.com>
Co-committed-by: Meshki, Abalfazl <a200263171@noreply.gitea.eco.tsi-dev.otc-service.com>
2024-07-22 12:47:41 +00:00
9746bb1892 Update 'otc_metadata/data/services/antiddos.yaml'
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: tischrei <tino.schreiber@t-systems.com>
Co-committed-by: tischrei <tino.schreiber@t-systems.com>
2024-07-19 12:50:12 +00:00
2105405796 create Page Not Found service
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: tischrei <tino.schreiber@t-systems.com>
Co-committed-by: tischrei <tino.schreiber@t-systems.com>
2024-07-09 08:58:50 +00:00
98dc53c075 fixing typo in rst path
Reviewed-by: otcbot <otcbot@t-systems.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2024-06-27 12:22:54 +00:00
8f5bb1035c add marketplace barebones to docs
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Engelbracht, Keno <a22549483@noreply.gitea.eco.tsi-dev.otc-service.com>
Co-committed-by: Engelbracht, Keno <a22549483@noreply.gitea.eco.tsi-dev.otc-service.com>
2024-06-27 07:41:37 +00:00
cc0c94a163 Filter for disable_import
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
2024-06-24 12:35:13 +00:00
00fd8fd30b Added Config Service
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
2024-06-24 07:54:08 +00:00
9 changed files with 77 additions and 1 deletions

View File

@ -0,0 +1,10 @@
---
environment: internal
hc_location: api/rms
html_location: docs/config/api-ref
link: /config/api-ref/
pdf_name: config-api-ref
rst_location: api-ref/source
service_type: config
title: API Reference
type: api-ref

View File

@ -0,0 +1,9 @@
---
environment: internal
hc_location: usermanual/rms
html_location: docs/config/umn
link: /config/umn/
rst_location: umn/source
service_type: config
title: User Guide
type: umn

View File

@ -0,0 +1,10 @@
---
hc_location: usermanual/mkp
html_location: docs/mkp/umn
link: /marketplace/umn/
pdf_name: mkp-umn
rst_location: umn/source
service_type: mkp
title: User Guide
type: umn
disable_import: true

View File

@ -8,7 +8,7 @@ repositories:
repo: opentelekomcloud-docs/anti-ddos repo: opentelekomcloud-docs/anti-ddos
type: github type: github
service_category: security-services service_category: security-services
service_title: Anti DDoS service_title: Anti-DDoS
service_type: antiddos service_type: antiddos
service_uri: anti-ddos service_uri: anti-ddos
teams: teams:

View File

@ -0,0 +1,16 @@
---
environment: internal
repositories:
- environment: internal
repo: docs/config
type: gitea
- environment: public
repo: opentelekomcloud-docs/config
type: github
service_category: md
service_title: Config
service_type: config
service_uri: config
teams:
- name: docs-orchestration-rw
permission: write

View File

@ -0,0 +1,16 @@
---
environment: public
repositories:
- environment: internal
repo: docs/marketplace
type: gitea
- environment: public
repo: opentelekomcloud-docs/marketplace
type: github
service_category: other
service_title: Marketplace
service_type: mkp
service_uri: marketplace
teams:
- name: docs-3rd-party-integration-rw
permission: write

View File

@ -0,0 +1,13 @@
---
environment: hidden
repositories:
- environment: public
repo: opentelekomcloud-docs/page-not-found
type: github
service_category: other
service_title: Page Not Found
service_type: pagenotfound
service_uri: page-not-found
teams:
- name: docs-eco-rw
permission: write

View File

@ -5,3 +5,4 @@
.. service_card:: .. service_card::
:service_type: {{ service_type }} :service_type: {{ service_type }}
:environment: {{ environment }}

View File

@ -201,6 +201,7 @@ def process_repositories(args, service):
site_name="Internal Documentation Portal", site_name="Internal Documentation Portal",
logo_url="https://docs-int.otc-service.com", logo_url="https://docs-int.otc-service.com",
) )
context["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