blob: e01384027ee98cfede1ef977b0b8631a5660e4db [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
24
Andy Bavier177f29f2020-08-12 14:42:00 -070025imagePullSecrets: []
26nameOverride: ""
27fullnameOverride: ""
28
29podAnnotations: {}
30
31podSecurityContext: {}
32 # fsGroup: 2000
33
34securityContext: {}
35 # capabilities:
36 # drop:
37 # - ALL
38 # readOnlyRootFilesystem: true
39 # runAsNonRoot: true
40 # runAsUser: 1000
41
42service:
43 type: ClusterIP
44 port: 80
45
46ingress:
47 enabled: false
48 annotations: {}
49 # kubernetes.io/ingress.class: nginx
50 # kubernetes.io/tls-acme: "true"
51 hosts:
52 - host: chart-example.local
53 paths: []
54 tls: []
55 # - secretName: chart-example-tls
56 # hosts:
57 # - chart-example.local
58
59resources: {}
60 # We usually recommend not to specify default resources and to leave this as a conscious
61 # choice for the user. This also increases chances charts run on environments with little
62 # resources, such as Minikube. If you do want to specify resources, uncomment the following
63 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
64 # limits:
65 # cpu: 100m
66 # memory: 128Mi
67 # requests:
68 # cpu: 100m
69 # memory: 128Mi
70
71autoscaling:
72 enabled: false
73 minReplicas: 1
74 maxReplicas: 100
75 targetCPUUtilizationPercentage: 80
76 # targetMemoryUtilizationPercentage: 80
77
78nodeSelector: {}
79
80tolerations: []
81
82affinity: {}