Andy Bavier | 177f29f | 2020-08-12 14:42:00 -0700 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
| 2 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 3 | |
| 4 | # Default values for edge-monitoring-server. |
| 5 | # This is a YAML-formatted file. |
| 6 | # Declare variables to be passed into your templates. |
| 7 | |
| 8 | replicaCount: 1 |
| 9 | |
| 10 | image: |
| 11 | repository: docker.io/omecproject/edge-monitoring-server |
| 12 | pullPolicy: Always |
| 13 | # Overrides the image tag whose default is the chart appVersion. |
| 14 | tag: "" |
| 15 | |
| 16 | # URL of calendar containing scheduled downtimes, in iCal format |
| 17 | iCalUrl: "" |
| 18 | |
Andy Bavier | af5da15 | 2020-10-21 13:58:58 -0700 | [diff] [blame] | 19 | # Name of environment that server is monitoring (e.g., "staging") |
| 20 | aetherEnv: "production" |
| 21 | |
Andy Bavier | 0c586ca | 2021-03-12 14:36:40 -0700 | [diff] [blame] | 22 | alerts: |
| 23 | enabled: false |
Andy Bavier | 0c83a86 | 2021-03-17 10:18:44 -0700 | [diff] [blame] | 24 | manyEdgeConnectTestsFailing: false |
Andy Bavier | 0c586ca | 2021-03-12 14:36:40 -0700 | [diff] [blame] | 25 | |
Andy Bavier | 177f29f | 2020-08-12 14:42:00 -0700 | [diff] [blame] | 26 | imagePullSecrets: [] |
| 27 | nameOverride: "" |
| 28 | fullnameOverride: "" |
| 29 | |
| 30 | podAnnotations: {} |
| 31 | |
| 32 | podSecurityContext: {} |
| 33 | # fsGroup: 2000 |
| 34 | |
| 35 | securityContext: {} |
| 36 | # capabilities: |
| 37 | # drop: |
| 38 | # - ALL |
| 39 | # readOnlyRootFilesystem: true |
| 40 | # runAsNonRoot: true |
| 41 | # runAsUser: 1000 |
| 42 | |
| 43 | service: |
| 44 | type: ClusterIP |
| 45 | port: 80 |
| 46 | |
| 47 | ingress: |
| 48 | enabled: false |
| 49 | annotations: {} |
| 50 | # kubernetes.io/ingress.class: nginx |
| 51 | # kubernetes.io/tls-acme: "true" |
| 52 | hosts: |
| 53 | - host: chart-example.local |
| 54 | paths: [] |
| 55 | tls: [] |
| 56 | # - secretName: chart-example-tls |
| 57 | # hosts: |
| 58 | # - chart-example.local |
| 59 | |
| 60 | resources: {} |
| 61 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 62 | # choice for the user. This also increases chances charts run on environments with little |
| 63 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 64 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 65 | # limits: |
| 66 | # cpu: 100m |
| 67 | # memory: 128Mi |
| 68 | # requests: |
| 69 | # cpu: 100m |
| 70 | # memory: 128Mi |
| 71 | |
| 72 | autoscaling: |
| 73 | enabled: false |
| 74 | minReplicas: 1 |
| 75 | maxReplicas: 100 |
| 76 | targetCPUUtilizationPercentage: 80 |
| 77 | # targetMemoryUtilizationPercentage: 80 |
| 78 | |
| 79 | nodeSelector: {} |
| 80 | |
| 81 | tolerations: [] |
| 82 | |
| 83 | affinity: {} |