blob: 04683b25dab052265c8c855a33f80c84a217ca86 [file] [log] [blame]
Andy Bavier1cd0a4b2021-04-26 15:24:57 -07001# Copyright 2020-present Open Networking Foundation
Scott Baker4cad5ee2022-06-09 14:17:35 -07002# SPDX-License-Identifier: Apache-2.0
Andy Bavier1cd0a4b2021-04-26 15:24:57 -07003
4# Default values for edge-maintenance-agent.
5# This is a YAML-formatted file.
6# Declare variables to be passed into your templates.
7
8replicaCount: 1
9
10image:
11 # The agent is bundled in the edge-monitoring-server image.
12 repository: docker.io/omecproject/edge-monitoring-server
13 pullPolicy: Always
14 # Overrides the image tag whose default is the chart appVersion.
15 tag: ""
16
17# URL of edge monitoring server that monitors maintenance calendar
18edgeMonitoringServerURL: ""
19
20# Name of edge in edge monitoring server output
21edgeName: ""
22
23prometheus:
24 enabled: true
25
26imagePullSecrets: []
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: 8080
46
47resources: {}
48 # We usually recommend not to specify default resources and to leave this as a conscious
49 # choice for the user. This also increases chances charts run on environments with little
50 # resources, such as Minikube. If you do want to specify resources, uncomment the following
51 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
52 # limits:
53 # cpu: 100m
54 # memory: 128Mi
55 # requests:
56 # cpu: 100m
57 # memory: 128Mi
58
59nodeSelector: {}
60
61tolerations: []
62
63affinity: {}