c37308ebd45bec0c322df45c167dfd55fffe0fd9
[it/dep.git] / smo-install / oran_oom / nonrtricgateway / values.yaml
1 ################################################################################
2 #   Copyright (c) 2021 Nordix Foundation.                                      #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16
17 # Default values for Gateway application.
18 # This is a YAML-formatted file.
19 # Declare variables to be passed into your templates.
20
21 imagePullPolicy: IfNotPresent
22 image:
23   registry: 'nexus3.o-ran-sc.org:10002/o-ran-sc'
24   name: nonrtric-gateway
25   tag: 1.2.0
26 service:
27   type: NodePort
28   ports:
29   - name: http
30     internalPort: "9090"
31     targetPort: "9090"
32     nodePort: "30093"
33
34 liveness:
35   initialDelaySeconds: 20
36   periodSeconds: 10
37 readiness:
38   initialDelaySeconds: 20
39   periodSeconds: 10
40
41 a1PolicyLink: &a1PolicyLink http://a1policymanagement.onap:8081
42
43 application:
44   server:
45     port: 9090
46   spring:
47     cloud:
48       gateway:
49         httpclient:
50           ssl:
51             useInsecureTrustManager: true
52           wiretap: true
53         httpserver:
54           wiretap: true
55         routes:
56         - id: A1-Policy
57           uri: *a1PolicyLink
58           predicates:
59           - Path=/a1-policy/**
60         - id: A1-EI
61           uri: https://informationservice:9083
62           predicates:
63           - Path=/data-producer/**,/data-consumer/**
64   management:
65     endpoint:
66       gateway:
67         enabled: true
68     endpoints:
69       web:
70         exposure:
71           include: "gateway,loggers,logfile,health,info,metrics,threaddump,heapdump"
72   logging:
73     level:
74       ROOT: ERROR
75       org.springframework: ERROR
76       org.springframework.cloud.gateway: INFO
77       reactor.netty: INFO
78     file:
79       name: /var/log/nonrtric-gateway/application.log