blob: 6272fba0dad96a9db93f17191e5f68c832ee6e8c [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"
15
Hyunsun Moon97e111d2022-05-13 17:56:56 -070016rocUrl: http://aether-roc-api.aether-roc:8181/aether/v2.0.0/connectivity-service-v2/
17keycloakUrl: http://keycloak.aether-keycloak/auth/realms/aether/protocol/openid-connect/token
18enterprise: enterprise1
19site: site1
20deviceGroup: device-group1
Shad Ansari0a4637a2022-05-11 12:20:59 -070021numDevices: 1
22mqttIp: 10.92.2.12
23
24imagePullSecrets: []
25nameOverride: ""
26fullnameOverride: ""
27
28serviceAccount:
29 # Specifies whether a service account should be created
30 create: true
31 # Annotations to add to the service account
32 annotations: {}
33 # The name of the service account to use.
34 # If not set and create is true, a name is generated using the fullname template
35 name: ""
36
37podAnnotations: {}
38
39podSecurityContext: {}
40 # fsGroup: 2000
41
42securityContext: {}
43 # capabilities:
44 # drop:
45 # - ALL
46 # readOnlyRootFilesystem: true
47 # runAsNonRoot: true
48 # runAsUser: 1000
49
50service:
51 type: NodePort
52 port: 5000
53
54ingress:
55 enabled: false
56 className: ""
57 annotations: {}
58 # kubernetes.io/ingress.class: nginx
59 # kubernetes.io/tls-acme: "true"
60 hosts:
61 - host: chart-example.local
62 paths:
63 - path: /
64 pathType: ImplementationSpecific
65 tls: []
66 # - secretName: chart-example-tls
67 # hosts:
68 # - chart-example.local
69
70resources: {}
71 # We usually recommend not to specify default resources and to leave this as a conscious
72 # choice for the user. This also increases chances charts run on environments with little
73 # resources, such as Minikube. If you do want to specify resources, uncomment the following
74 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
75 # limits:
76 # cpu: 100m
77 # memory: 128Mi
78 # requests:
79 # cpu: 100m
80 # memory: 128Mi
81
82autoscaling:
83 enabled: false
84 minReplicas: 1
85 maxReplicas: 100
86 targetCPUUtilizationPercentage: 80
87 # targetMemoryUtilizationPercentage: 80
88
89nodeSelector: {}
90
91tolerations: []
92
93affinity: {}