Compare commits
7 Commits
rfs-fix
...
enable_asm
Author | SHA1 | Date | |
---|---|---|---|
3503ed414e | |||
0681226873 | |||
0ede9b724d | |||
6884d80c33 | |||
edaf38baf6 | |||
e153f7d112 | |||
7ec0772602 |
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: public
|
||||||
hc_location: usermanual/asm
|
hc_location: usermanual/asm
|
||||||
html_location: docs/asm/umn
|
html_location: docs/asm/umn
|
||||||
link: /application-service-mesh/umn/
|
link: /application-service-mesh/umn/
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
|
||||||
hc_location: api/rms
|
hc_location: api/rms
|
||||||
html_location: docs/config/api-ref
|
html_location: docs/config/api-ref
|
||||||
link: /config/api-ref/
|
link: /config/api-ref/
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
|
||||||
hc_location: usermanual/rms
|
hc_location: usermanual/rms
|
||||||
html_location: docs/config/umn
|
html_location: docs/config/umn
|
||||||
link: /config/umn/
|
link: /config/umn/
|
||||||
|
11
otc_metadata/data/documents/eps-api-ref.yaml
Normal file
11
otc_metadata/data/documents/eps-api-ref.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: api/em
|
||||||
|
html_location: docs/eps/api-ref
|
||||||
|
link: /enterprise-project-service/api-ref/
|
||||||
|
pdf_name: eps-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: eps
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
||||||
|
|
11
otc_metadata/data/documents/eps-umn.yaml
Normal file
11
otc_metadata/data/documents/eps-umn.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
hc_location: usermanual/em
|
||||||
|
html_location: docs/eps/umn
|
||||||
|
link: /enterprise-project-service/umn/
|
||||||
|
pdf_name: eps-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: eps
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
||||||
|
|
@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
environment: internal
|
|
||||||
hc_location: api_swift/obs
|
|
||||||
html_location: docs/obs/api-swift
|
|
||||||
link: /object-storage-service/swiftapi/
|
|
||||||
pdf_name: obs-swiftapi
|
|
||||||
rst_location: doc/swiftapi/source
|
|
||||||
service_type: obs
|
|
||||||
title: API Reference (Swift) - Deprecated - Will be removed at 2023 Nov. 10!
|
|
||||||
type: swiftapi
|
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
hc_location: api/rfs
|
hc_location: api/aos
|
||||||
environment: internal
|
environment: internal
|
||||||
html_location: docs/rfs/api-ref
|
html_location: docs/rfs/api-ref
|
||||||
link: /resource-formation-service/api-ref/
|
link: /resource-formation-service/api-ref/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: public
|
||||||
repositories:
|
repositories:
|
||||||
- environment: internal
|
- environment: internal
|
||||||
repo: docs/application-service-mesh
|
repo: docs/application-service-mesh
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: public
|
||||||
repositories:
|
repositories:
|
||||||
- environment: internal
|
- environment: internal
|
||||||
repo: docs/config
|
repo: docs/config
|
||||||
|
17
otc_metadata/data/services/eps.yaml
Normal file
17
otc_metadata/data/services/eps.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
repositories:
|
||||||
|
- environment: internal
|
||||||
|
repo: docs/enterprise-project-service
|
||||||
|
type: gitea
|
||||||
|
- environment: public
|
||||||
|
repo: opentelekomcloud-docs/enterprise-project-service
|
||||||
|
type: github
|
||||||
|
service_category: security-services
|
||||||
|
service_title: Enterprise Project Service
|
||||||
|
service_type: eps
|
||||||
|
service_uri: enterprise-project-service
|
||||||
|
teams:
|
||||||
|
- name: docs-security-services-rw
|
||||||
|
permission: write
|
||||||
|
|
@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
from git import Repo
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
extensions = [
|
extensions = [
|
||||||
'otcdocstheme',
|
'otcdocstheme',
|
||||||
@ -131,3 +133,8 @@ latex_documents = [
|
|||||||
{% endif -%}
|
{% endif -%}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# Get the Git commit values for last updated timestamp on each page
|
||||||
|
repo = Repo(search_parent_directories=True)
|
||||||
|
commit = repo.head.commit
|
||||||
|
current_commit_hash = commit.hexsha
|
||||||
|
current_commit_time = commit.committed_datetime.strftime('%Y-%m-%d %H:%M')
|
||||||
|
@ -12,4 +12,5 @@ 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
|
||||||
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
|
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
|
||||||
setuptools
|
setuptools
|
||||||
|
gitpython
|
||||||
|
Reference in New Issue
Block a user