Andy Bavier | 1cd0a4b | 2021-04-26 15:24:57 -0700 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
Scott Baker | 4cad5ee | 2022-06-09 14:17:35 -0700 | [diff] [blame] | 2 | # SPDX-License-Identifier: Apache-2.0 |
Andy Bavier | 1cd0a4b | 2021-04-26 15:24:57 -0700 | [diff] [blame] | 3 | |
| 4 | # Default values for edge-maintenance-agent. |
| 5 | # This is a YAML-formatted file. |
| 6 | # Declare variables to be passed into your templates. |
| 7 | |
| 8 | replicaCount: 1 |
| 9 | |
| 10 | image: |
| 11 | # The agent is bundled in the edge-monitoring-server image. |
| 12 | repository: docker.io/omecproject/edge-monitoring-server |
Andy Bavier | 1d72fff | 2022-06-09 15:35:16 -0700 | [diff] [blame] | 13 | pullPolicy: IfNotPresent |
Andy Bavier | 1cd0a4b | 2021-04-26 15:24:57 -0700 | [diff] [blame] | 14 | # Overrides the image tag whose default is the chart appVersion. |
| 15 | tag: "" |
| 16 | |
Andy Bavier | 1d72fff | 2022-06-09 15:35:16 -0700 | [diff] [blame] | 17 | # Specify edge monitoring server URL, with /edges at end |
| 18 | # E.g., https://monitoring.aetherproject.org/edges |
Andy Bavier | 1cd0a4b | 2021-04-26 15:24:57 -0700 | [diff] [blame] | 19 | edgeMonitoringServerURL: "" |
| 20 | |
| 21 | # Name of edge in edge monitoring server output |
| 22 | edgeName: "" |
| 23 | |
Andy Bavier | 1d72fff | 2022-06-09 15:35:16 -0700 | [diff] [blame] | 24 | # Secret containing basic auth username / password for edge monitoring server |
| 25 | # Will be created if useExistingSecret = false |
| 26 | secretName: "edge-maintenance-agent-secret" |
| 27 | |
| 28 | # Basic auth username and password (if not using existing secret) |
| 29 | basicAuthUsername: "" |
| 30 | basicAuthPassword: "" |
| 31 | |
| 32 | # Use existing secret; don't create it |
| 33 | useExistingSecret: false |
| 34 | |
Andy Bavier | 1cd0a4b | 2021-04-26 15:24:57 -0700 | [diff] [blame] | 35 | prometheus: |
| 36 | enabled: true |
| 37 | |
| 38 | imagePullSecrets: [] |
| 39 | nameOverride: "" |
| 40 | fullnameOverride: "" |
| 41 | |
| 42 | podAnnotations: {} |
| 43 | |
| 44 | podSecurityContext: {} |
| 45 | # fsGroup: 2000 |
| 46 | |
| 47 | securityContext: {} |
| 48 | # capabilities: |
| 49 | # drop: |
| 50 | # - ALL |
| 51 | # readOnlyRootFilesystem: true |
| 52 | # runAsNonRoot: true |
| 53 | # runAsUser: 1000 |
| 54 | |
| 55 | service: |
| 56 | type: ClusterIP |
| 57 | port: 8080 |
| 58 | |
| 59 | resources: {} |
| 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 | |
| 71 | nodeSelector: {} |
| 72 | |
| 73 | tolerations: [] |
| 74 | |
| 75 | affinity: {} |