Upgrade APPC to use common mariadb galera charts
[oom.git] / kubernetes / contrib / charts / netbox / charts / netbox-app / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 global: # global defaults
16   nodePortPrefix: 302
17   persistence: {}
18
19 config:
20   # Secrets configuration values
21   dbPassword: J5brHrAXFLQSif0K
22   emailPassword: password
23   napalmPassword: password
24   secretKey: r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj
25   superuserPassword: admin
26   superuserAPIToken: 0123456789abcdef0123456789abcdef01234567
27
28   # Remaining environment configuration values
29   allowedHosts: "*"
30   dbName: netbox
31   dbUser: netbox
32   dbHost: netbox-postgres
33   emailServer: localhost
34   emailPort: 25
35   emailUsername: netbox
36   emailTimeout: 5
37   emailFrom: netbox@bar.com
38   mediaRoot: /opt/netbox/netbox/media
39   napalmUsername: napalm
40   napalmTimeout: 10
41   maxPageSize: 0
42   superuserName: admin
43   superuserEmail: admin@onap.org
44
45 repository: docker.io
46 image: ninech/netbox:v2.3.5
47
48 # probe configuration parameters
49 liveness:
50   initialDelaySeconds: 10
51   periodSeconds: 10
52   # necessary to disable liveness probe when setting breakpoints
53   # in debugger so K8s doesn't restart unresponsive container
54   enabled: false
55
56 readiness:
57   initialDelaySeconds: 30
58   periodSeconds: 10
59
60 service:
61   type: ClusterIP
62   name: netbox-app
63   externalPort: 8001
64   internalPort: 8001
65   portName: netbox-app
66
67 ingress:
68   enabled: false
69
70 # default number of instances
71 replicaCount: 1
72
73 nodeSelector: {}
74
75 affinity: {}
76
77 ## Persist data to a persitent volume
78 persistence:
79   enabled: true
80   volumeReclaimPolicy: Retain
81   accessMode: ReadWriteMany
82   size: 100Mi
83   storageClass: "nfs-dev-sc"
84
85   # Names used for shared pv/pvcs across App & Nginx containers
86   staticPvName: netbox-static
87
88 # probe configuration parameters
89 liveness:
90   initialDelaySeconds: 10
91   periodSeconds: 10
92   # necessary to disable liveness probe when setting breakpoints
93   # in debugger so K8s doesn't restart unresponsive container
94   enabled: true
95 readiness:
96   initialDelaySeconds: 10
97   periodSeconds: 10
98
99 resources: {}