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