Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / portal-ng / components / portal-ng-bff / values.yaml
1 global: {}
2
3 # Default values for bff.
4 # This is a YAML-formatted file.
5 # Declare variables to be passed into your templates.
6 image:
7   imageName: onap/portal-ng/bff
8   pullPolicy: Always
9   # Overrides the image tag whose default value is the chart appVersion.
10   # tag: 0.1.0
11
12 replicaCount: 2
13
14 # Specifies how many old replicas will be retained in a deployment
15 revisionHistoryLimit: 2
16
17 # Custom selector label (for bigger namespaces with other components)
18 partOf: portal
19
20 service:
21   type: ClusterIP
22   port: 9080
23   ports:
24     - name: http
25       port: 9080
26
27 autoscaling:
28   enabled: false
29   minReplicas: 1
30   maxReplicas: 100
31   targetCPUUtilizationPercentage: 80
32
33 probes:
34   readiness:
35     initialDelaySeconds: 20
36     failureThreshold: 4
37   liveness:
38     initialDelaySeconds: 20
39     failureThreshold: 4
40
41 env:
42   KEYCLOAK_URL: http://keycloakx-http.keycloak/auth
43   KEYCLOAK_REALM: ONAP
44   HISTORY_URL: http://portal-ng-history:9002
45   PREFERENCES_URL: http://portal-ng-preferences:9001
46   TRACING_ENABLED: true
47   COLLECTOR_HOST: jaeger-collector.istio-system
48   COLLECTOR_PORT: 9411
49
50 secretEnv:
51   KEYCLOAK_CLIENT_ID: portal-bff
52   KEYCLOAK_CLIENT_SECRET: pKOuVH1bwRZoNzp5P5t4GV8CqcCJYVtr
53
54 #Pods Service Account
55 serviceAccount:
56   nameOverride: portal-ng-bff
57   roles:
58     - read
59