blob: a03e81fa26e4661b1e741df8f21f14639125f20d [file] [log] [blame]
Andy Bavier177f29f2020-08-12 14:42:00 -07001# 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
8replicaCount: 1
9
10image:
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
17iCalUrl: ""
18
Andy Bavieraf5da152020-10-21 13:58:58 -070019# Name of environment that server is monitoring (e.g., "staging")
20aetherEnv: "production"
21
Andy Bavier0c586ca2021-03-12 14:36:40 -070022alerts:
23 enabled: false
Andy Bavier0c83a862021-03-17 10:18:44 -070024 manyEdgeConnectTestsFailing: false
Andy Bavier0c586ca2021-03-12 14:36:40 -070025
Andy Bavier177f29f2020-08-12 14:42:00 -070026imagePullSecrets: []
27nameOverride: ""
28fullnameOverride: ""
29
30podAnnotations: {}
31
32podSecurityContext: {}
33 # fsGroup: 2000
34
35securityContext: {}
36 # capabilities:
37 # drop:
38 # - ALL
39 # readOnlyRootFilesystem: true
40 # runAsNonRoot: true
41 # runAsUser: 1000
42
43service:
44 type: ClusterIP
45 port: 80
46
47ingress:
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
60resources: {}
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
72autoscaling:
73 enabled: false
74 minReplicas: 1
75 maxReplicas: 100
76 targetCPUUtilizationPercentage: 80
77 # targetMemoryUtilizationPercentage: 80
78
79nodeSelector: {}
80
81tolerations: []
82
83affinity: {}