| global: {} |
| |
| # Default values for preferences. |
| # This is a YAML-formatted file. |
| # Declare variables to be passed into your templates. |
| image: |
| imageName: onap/portal-ng/preferences |
| pullPolicy: Always |
| # Overrides the image tag whose default value is the chart appVersion. |
| # tag: 0.1.0 |
| |
| replicaCount: 1 |
| |
| # Specifies how many old replicas will be retained in a deployment |
| revisionHistoryLimit: 2 |
| |
| nameOverride: "" |
| fullnameOverride: "" |
| |
| # Custom selector label (for bigger namespaces with other components) |
| partOf: portal |
| |
| service: |
| type: ClusterIP |
| port: 9001 |
| ports: |
| - name: http |
| port: 9001 |
| |
| autoscaling: |
| enabled: false |
| minReplicas: 1 |
| maxReplicas: 5 |
| targetCPUUtilizationPercentage: 80 |
| |
| probes: |
| readiness: |
| initialDelaySeconds: 20 |
| failureThreshold: 4 |
| liveness: |
| initialDelaySeconds: 20 |
| failureThreshold: 4 |
| |
| secretEnv: |
| MONGO_USERNAME: dbuser |
| MONGO_PASSWORD: dbpassword |
| MONGO_DATABASE: Preferences |
| |
| env: |
| KEYCLOAK_URL: http://keycloak-http.keycloak |
| KEYCLOAK_REALM: ONAP |
| MONGO_HOST: preferences-mongodb |
| MONGO_PORT: 27017 |
| TRACING_ENABLED: true |
| COLLECTOR_HOST: jaeger-collector.istio-system |
| COLLECTOR_PORT: 9411 |
| |
| mongodb: |
| nameOverride: preferences-mongodb |
| service: |
| portName: tcp-mongodb |
| auth: |
| rootPassword: TrWAweN9y9eW |
| usernames: |
| - dbuser |
| passwords: |
| - dbpassword |
| databases: |
| - Preferences |
| resources: |
| limits: |
| cpu: "2" |
| memory: "2Gi" |
| requests: |
| cpu: "250m" |
| memory: "500Mi" |
| |
| #Pods Service Account |
| serviceAccount: |
| nameOverride: portal-ng-preferences |
| roles: |
| - read |