Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / contrib / components / netbox / components / 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   nodePortPrefixExt: 304
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 image: netboxcommunity/netbox:v2.5.8
46
47 # probe configuration parameters
48 liveness:
49   initialDelaySeconds: 10
50   periodSeconds: 10
51   # necessary to disable liveness probe when setting breakpoints
52   # in debugger so K8s doesn't restart unresponsive container
53   enabled: false
54
55 readiness:
56   initialDelaySeconds: 30
57   periodSeconds: 10
58
59 service:
60   type: ClusterIP
61   name: netbox-app
62   externalPort: 8001
63   internalPort: 8001
64   portName: netbox-app
65
66   # The following subnet pool will be
67   # configured in Netbox by provisioning script.
68   private1: 192.168.10.0/24
69   private2: 192.168.20.0/24
70   management: 10.0.101.0/24
71
72 ingress:
73   enabled: false
74
75 # default number of instances
76 replicaCount: 1
77
78 nodeSelector: {}
79
80 affinity: {}
81
82 ## Persist data to a persitent volume
83 persistence:
84   enabled: true
85   volumeReclaimPolicy: Retain
86   accessMode: ReadWriteMany
87   size: 100Mi
88
89   # Uncomment the storageClass parameter to use an existing PV
90   # that will match the following class.
91   # When uncomment the storageClass, the PV is not created anymore.
92
93   # storageClass: "nfs-dev-sc"
94
95   staticPvName: netbox-static
96
97   # When using storage class, mountPath and mountSubPath are
98   # simply ignored.
99
100   mountPath: /dockerdata-nfs
101   mountSubPath: netbox/app
102
103 # probe configuration parameters
104 liveness:
105   initialDelaySeconds: 10
106   periodSeconds: 10
107   # necessary to disable liveness probe when setting breakpoints
108   # in debugger so K8s doesn't restart unresponsive container
109   enabled: true
110 readiness:
111   initialDelaySeconds: 10
112   periodSeconds: 10
113
114 resources: {}
115
116 #Pods Service Account
117 serviceAccount:
118   nameOverride: netbox-app
119   roles:
120     - read