Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / portal-ng / components / portal-ng-history / values.yaml
1 global: {}
2
3 image:
4   imageName: onap/portal-ng/history
5   pullPolicy: Always
6   # Overrides the image tag whose default value is the chart appVersion.
7   # tag: 0.1.0
8
9 replicaCount: 1
10
11 # Specifies how many old replicas will be retained in a deployment
12 revisionHistoryLimit: 2
13
14 imagePullSecrets:
15   - name: onap-docker-registry-key
16 nameOverride: ""
17 fullnameOverride: ""
18
19 # Custom selector label (for bigger namespaces with other components)
20 partOf: portal
21
22 service:
23   type: ClusterIP
24   port: 9002
25   ports:
26     - name: http
27       port: 9002
28
29 autoscaling:
30   enabled: false
31   minReplicas: 1
32   maxReplicas: 5
33   targetCPUUtilizationPercentage: 80
34
35 probes:
36   readiness:
37     initialDelaySeconds: 20
38     failureThreshold: 4
39   liveness:
40     initialDelaySeconds: 20
41     failureThreshold: 4
42
43 secretEnv:
44   MONGO_USERNAME: dbuser
45   MONGO_PASSWORD: dbpassword
46   MONGO_DATABASE: history
47
48 env:
49   KEYCLOAK_URL: http://keycloakx-http.keycloak
50   KEYCLOAK_REALM: ONAP
51   MONGO_HOST: history-mongodb
52   MONGO_PORT: 27017
53   TRACING_ENABLED: true
54   COLLECTOR_HOST: jaeger-collector.istio-system
55   COLLECTOR_PORT: 9411
56
57 mongodb:
58   nameOverride: history-mongodb
59   service:
60     portName: tcp-mongodb
61   auth:
62     rootPassword: TrWAweN9y9eW
63     usernames:
64     - dbuser
65     passwords:
66     - dbpassword
67     databases:
68     - history
69   resources:
70     limits:
71       cpu: "2"
72       memory: "2Gi"
73     requests:
74       cpu: "250m"
75       memory: "500Mi"
76
77 #Pods Service Account
78 serviceAccount:
79   nameOverride: portal-ng-history
80   roles:
81     - read