Compare commits

...

7 Commits

Author SHA1 Message Date
be8fad03bc removed environment: internal for ocr
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-committed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
2024-04-02 15:25:26 +00:00
92bf54ed0b make blueprints internal in AC
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-03-08 09:57:21 +00:00
842a30fe3d fix public only service left out in metadata.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-03-08 09:57:11 +00:00
c7558639bb remove html location from Cloud Create to avoid issue on docs-export generation script
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-02-27 14:38:12 +00:00
3062b7d309 make aom User Guide 2.0 internal
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-02-27 14:17:34 +00:00
d91d67c912 add aom User Guide 2.0
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-02-27 12:21:30 +00:00
4095fcd384 fix squad value
Reviewed-by: vladimirvshivkov <vshivkovvladimir@gmail.com>
Co-authored-by: Kvrivishvili, Iustina <iustina.kvrivishvili@t-systems.com>
Co-committed-by: Kvrivishvili, Iustina <iustina.kvrivishvili@t-systems.com>
2024-02-23 16:53:21 +00:00
8 changed files with 20 additions and 6 deletions

View File

@ -1,5 +1,5 @@
--- ---
environment: public environment: internal
link: /architecture-center/caf/ link: /architecture-center/caf/
pdf_name: architecture-center-cloud-adoption-framework pdf_name: architecture-center-cloud-adoption-framework
rst_location: doc/caf/source rst_location: doc/caf/source

View File

@ -0,0 +1,10 @@
---
environment: internal
hc_location: usermanual2/aom
html_location: docs/aom/umn2
link: /application-operations-management/umn2/
pdf_name: aom-umn2.0
rst_location: umn2/source
service_type: aom
title: User Guide 2.0
type: umn2

View File

@ -1,5 +1,4 @@
--- ---
html_location: docs/cc/api-ref
link: /cloud-create/api-ref/ link: /cloud-create/api-ref/
pdf_name: cc-api-ref pdf_name: cc-api-ref
rst_location: api-ref/source rst_location: api-ref/source

View File

@ -1,6 +1,5 @@
--- ---
hc_location: api/ocr hc_location: api/ocr
environment: internal
html_location: docs/ocr/api-ref html_location: docs/ocr/api-ref
link: /optical-character-recognition/api-ref/ link: /optical-character-recognition/api-ref/
pdf_name: ocr-api-ref pdf_name: ocr-api-ref

View File

@ -1,6 +1,5 @@
--- ---
hc_location: usermanual/ocr hc_location: usermanual/ocr
environment: internal
html_location: docs/ocr/umn html_location: docs/ocr/umn
link: /optical-character-recognition/umn/ link: /optical-character-recognition/umn/
pdf_name: ocr-umn pdf_name: ocr-umn

View File

@ -12,5 +12,5 @@ service_title: FunctionGraph
service_type: fg service_type: fg
service_uri: function-graph service_uri: function-graph
teams: teams:
- name: docs-compute-rw - name: docs-container-rw
permission: write permission: write

View File

@ -1,5 +1,5 @@
--- ---
environment: internal environment: public
repositories: repositories:
- environment: internal - environment: internal
repo: docs/optical-character-recognition repo: docs/optical-character-recognition

View File

@ -246,12 +246,19 @@ class Services(object):
x for x in srv["teams"] if x["permission"] == "write" x for x in srv["teams"] if x["permission"] == "write"
] ]
if "repositories" in srv and environment: if "repositories" in srv and environment:
internal_exists = False
for repo in srv["repositories"]: for repo in srv["repositories"]:
if ( if (
"environment" in repo "environment" in repo
and repo["environment"] == environment and repo["environment"] == environment
): ):
srv_res["repository"] = repo["repo"] srv_res["repository"] = repo["repo"]
if repo["environment"] == "internal":
internal_exists = True
# internal repo does not exist
# service will be left out from metadata.yaml
if not internal_exists:
continue
for doc in self.all_docs: for doc in self.all_docs:
if ( if (
"html_location" in doc "html_location" in doc