Compare commits
	
		
			6 Commits
		
	
	
		
			environmen
			...
			add-config
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 36d7f9372b | |||
| 218a755cb5 | |||
| 92db132b39 | |||
| 233afc5d06 | |||
| f217cafb1b | |||
| 663cfbed75 | 
@ -1,4 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
environment: hidden
 | 
			
		||||
hc_location: devg/apig
 | 
			
		||||
html_location: docs/apig/dev
 | 
			
		||||
link: /api-gateway/dev-guide/
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
environment: internal
 | 
			
		||||
environment: public
 | 
			
		||||
hc_location: usermanual/apm
 | 
			
		||||
html_location: docs/apm/umn
 | 
			
		||||
link: /application-performance-management/umn/
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										10
									
								
								otc_metadata/data/documents/config-api-ref.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								otc_metadata/data/documents/config-api-ref.yaml
									
									
									
									
									
										Normal 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: config/source
 | 
			
		||||
service_type: config
 | 
			
		||||
title: API Reference
 | 
			
		||||
type: api-ref
 | 
			
		||||
							
								
								
									
										9
									
								
								otc_metadata/data/documents/config-umn.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								otc_metadata/data/documents/config-umn.yaml
									
									
									
									
									
										Normal 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
 | 
			
		||||
@ -1,6 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
hc_location: api/hss2.0
 | 
			
		||||
environment: internal
 | 
			
		||||
html_location: docs/hss/api-ref
 | 
			
		||||
link: /host-security-service/api-ref/
 | 
			
		||||
pdf_name: hss-api-ref
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
hc_location: usermanual/hss2.0
 | 
			
		||||
environment: internal
 | 
			
		||||
html_location: docs/hss/umn
 | 
			
		||||
link: /host-security-service/umn/
 | 
			
		||||
pdf_name: hss-umn
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
environment: internal
 | 
			
		||||
environment: public
 | 
			
		||||
repositories:
 | 
			
		||||
- environment: internal
 | 
			
		||||
  repo: docs/application-performance-management
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										16
									
								
								otc_metadata/data/services/config.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								otc_metadata/data/services/config.yaml
									
									
									
									
									
										Normal 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
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
environment: internal
 | 
			
		||||
environment: public
 | 
			
		||||
repositories:
 | 
			
		||||
- environment: internal
 | 
			
		||||
  repo: docs/host-security-service
 | 
			
		||||
 | 
			
		||||
@ -87,10 +87,13 @@ class Services(object):
 | 
			
		||||
            res.append(copy.deepcopy(cat))
 | 
			
		||||
        return res
 | 
			
		||||
 | 
			
		||||
    def services_by_category(self, category):
 | 
			
		||||
    def services_by_category(self, category, environment=None):
 | 
			
		||||
        """List services matching category"""
 | 
			
		||||
        res = []
 | 
			
		||||
        for srv in self.all_services:
 | 
			
		||||
            if environment:
 | 
			
		||||
                if "environment" in srv and srv["environment"] != environment:
 | 
			
		||||
                    continue
 | 
			
		||||
            if srv["service_category"] == category:
 | 
			
		||||
                res.append(copy.deepcopy(srv))
 | 
			
		||||
        return res
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user