Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / contrib / components / netbox / components / netbox-nginx / 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 # Default values for mariadb.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18
19 global: # global defaults
20   nodePortPrefixExt: 304
21   persistence: {}
22   pullPolicy: Always
23
24 # application image
25 image: nginx:1.15-alpine
26 pullPolicy: Always
27
28 ingress:
29   enabled: false
30
31 # default number of instances
32 replicaCount: 1
33
34 nodeSelector: {}
35
36 affinity: {}
37
38 # probe configuration parameters
39 liveness:
40   initialDelaySeconds: 10
41   periodSeconds: 10
42   # necessary to disable liveness probe when setting breakpoints
43   # in debugger so K8s doesn't restart unresponsive container
44   enabled: true
45
46 readiness:
47   initialDelaySeconds: 10
48   periodSeconds: 10
49
50 ## Persist data to a persitent volume
51 persistence:
52   enabled: true
53
54   ## A manually managed Persistent Volume and Claim
55   ## Requires persistence.enabled: true
56   ## If defined, PVC must be created manually before volume will be bound
57   # existingClaim:
58   volumeReclaimPolicy: Retain
59
60   ## database data Persistent Volume Storage Class
61   ## If defined, storageClassName: <storageClass>
62   ## If set to "-", storageClassName: "", which disables dynamic provisioning
63   ## If undefined (the default) or set to null, no storageClassName spec is
64   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
65   ##   GKE, AWS & OpenStack)
66   ##
67   # storageClass: "-"
68   accessMode: ReadWriteMany
69   size: 1Gi
70   mountPath: /dockerdata-nfs
71   mountSubPath: netbox/nginx/data
72
73   # Names used for shared pv/pvcs across App & Nginx containers
74   staticPvName: netbox-static
75
76 service:
77   type: ClusterIP
78   name: netbox-nginx
79   portName: netbox-nginx
80   internalPort: 8080
81   nodePort: 20
82
83 resources: {}
84
85 #Pods Service Account
86 serviceAccount:
87   nameOverride: netbox-nginx
88   roles:
89     - read