blob: 21a9bb797cd5151371b3a81b2259a73d22b95726 [file] [log] [blame]
Hyunsun Moon97e111d2022-05-13 17:56:56 -07001# Copyright 2022-present Open Networking Foundation
2# SPDX-License-Identifier: Apache-2.0
Shad Ansari0a4637a2022-05-11 12:20:59 -07003#
4# Default values for person-detection-app.
5# This is a YAML-formatted file.
6# Declare variables to be passed into your templates.
7
8replicaCount: 1
9
10image:
11 repository: registry.aetherproject.org/aether-apps/person-detection-app
12 pullPolicy: Always
13 # Overrides the image tag whose default is the chart appVersion.
14 tag: "master"
Hyunsun Moonead8e402022-05-16 17:45:47 -070015imagePullSecrets: []
Shad Ansari0a4637a2022-05-11 12:20:59 -070016
Hyunsun Moon97e111d2022-05-13 17:56:56 -070017rocUrl: http://aether-roc-api.aether-roc:8181/aether/v2.0.0/connectivity-service-v2/
18keycloakUrl: http://keycloak.aether-keycloak/auth/realms/aether/protocol/openid-connect/token
Hyunsun Moonead8e402022-05-16 17:45:47 -070019rocSecret: rocsecret
Hyunsun Moon97e111d2022-05-13 17:56:56 -070020enterprise: enterprise1
21site: site1
22deviceGroup: device-group1
Shad Ansari0a4637a2022-05-11 12:20:59 -070023numDevices: 1
24mqttIp: 10.92.2.12
25
Shad Ansari0a4637a2022-05-11 12:20:59 -070026nameOverride: ""
27fullnameOverride: ""
28
29serviceAccount:
30 # Specifies whether a service account should be created
31 create: true
32 # Annotations to add to the service account
33 annotations: {}
34 # The name of the service account to use.
35 # If not set and create is true, a name is generated using the fullname template
36 name: ""
37
38podAnnotations: {}
39
40podSecurityContext: {}
41 # fsGroup: 2000
42
43securityContext: {}
44 # capabilities:
45 # drop:
46 # - ALL
47 # readOnlyRootFilesystem: true
48 # runAsNonRoot: true
49 # runAsUser: 1000
50
Shad Ansari0a4637a2022-05-11 12:20:59 -070051resources: {}
52 # We usually recommend not to specify default resources and to leave this as a conscious
53 # choice for the user. This also increases chances charts run on environments with little
54 # resources, such as Minikube. If you do want to specify resources, uncomment the following
55 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
56 # limits:
57 # cpu: 100m
58 # memory: 128Mi
59 # requests:
60 # cpu: 100m
61 # memory: 128Mi
62
63autoscaling:
64 enabled: false
65 minReplicas: 1
66 maxReplicas: 100
67 targetCPUUtilizationPercentage: 80
68 # targetMemoryUtilizationPercentage: 80
69
70nodeSelector: {}
71
72tolerations: []
73
74affinity: {}