blob: 3c6fc2c7c9c9a6c6769d6c6bbeb584844a4ec8de [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
Andy Bavier1d72fff2022-06-09 15:35:16 -070013 pullPolicy: IfNotPresent
Andy Bavier1cd0a4b2021-04-26 15:24:57 -070014 # Overrides the image tag whose default is the chart appVersion.
15 tag: ""
16
Andy Bavier1d72fff2022-06-09 15:35:16 -070017# Specify edge monitoring server URL, with /edges at end
18# E.g., https://monitoring.aetherproject.org/edges
Andy Bavier1cd0a4b2021-04-26 15:24:57 -070019edgeMonitoringServerURL: ""
20
21# Name of edge in edge monitoring server output
22edgeName: ""
23
Andy Bavier1d72fff2022-06-09 15:35:16 -070024# Secret containing basic auth username / password for edge monitoring server
25# Will be created if useExistingSecret = false
26secretName: "edge-maintenance-agent-secret"
27
28# Basic auth username and password (if not using existing secret)
29basicAuthUsername: ""
30basicAuthPassword: ""
31
32# Use existing secret; don't create it
33useExistingSecret: false
34
Andy Bavier1cd0a4b2021-04-26 15:24:57 -070035prometheus:
36 enabled: true
37
38imagePullSecrets: []
39nameOverride: ""
40fullnameOverride: ""
41
42podAnnotations: {}
43
44podSecurityContext: {}
45 # fsGroup: 2000
46
47securityContext: {}
48 # capabilities:
49 # drop:
50 # - ALL
51 # readOnlyRootFilesystem: true
52 # runAsNonRoot: true
53 # runAsUser: 1000
54
55service:
56 type: ClusterIP
57 port: 8080
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
71nodeSelector: {}
72
73tolerations: []
74
75affinity: {}