blob: 55475d2dface70ead3fb1f31a736f944bc29d804 [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:
Hyunsun Moon08898d42022-05-16 14:21:38 -070051 streaming:
52 type: ClusterIP
53 port: 5000
54 input:
55 type: LoadBalancer
56 port: 5000
Shad Ansari0a4637a2022-05-11 12:20:59 -070057
58ingress:
59 enabled: false
60 className: ""
61 annotations: {}
62 # kubernetes.io/ingress.class: nginx
63 # kubernetes.io/tls-acme: "true"
64 hosts:
65 - host: chart-example.local
66 paths:
67 - path: /
68 pathType: ImplementationSpecific
69 tls: []
70 # - secretName: chart-example-tls
71 # hosts:
72 # - chart-example.local
73
74resources: {}
75 # We usually recommend not to specify default resources and to leave this as a conscious
76 # choice for the user. This also increases chances charts run on environments with little
77 # resources, such as Minikube. If you do want to specify resources, uncomment the following
78 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
79 # limits:
80 # cpu: 100m
81 # memory: 128Mi
82 # requests:
83 # cpu: 100m
84 # memory: 128Mi
85
86autoscaling:
87 enabled: false
88 minReplicas: 1
89 maxReplicas: 100
90 targetCPUUtilizationPercentage: 80
91 # targetMemoryUtilizationPercentage: 80
92
93nodeSelector: {}
94
95tolerations: []
96
97affinity: {}