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