blob: f67ff064102e17116aa615a4e09327929198ddab [file] [log] [blame]
Marc-Alexandre Choquette81a2df62018-07-14 13:04:33 -04001# 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
19global: # global defaults
Alexis de Talhouët9a6e9b52018-09-18 10:32:39 -040020 nodePortPrefixExt: 304
Marc-Alexandre Choquette81a2df62018-07-14 13:04:33 -040021 persistence: {}
22 pullPolicy: Always
23
24# application image
25repository: docker.io
Alexis de Talhouët4ba6aaa2019-03-13 09:58:44 -040026image: nginx:1.15-alpine
Marc-Alexandre Choquette81a2df62018-07-14 13:04:33 -040027pullPolicy: Always
28
29ingress:
30 enabled: false
31
32# default number of instances
33replicaCount: 1
34
35nodeSelector: {}
36
37affinity: {}
38
39# probe configuration parameters
40liveness:
41 initialDelaySeconds: 10
42 periodSeconds: 10
43 # necessary to disable liveness probe when setting breakpoints
44 # in debugger so K8s doesn't restart unresponsive container
45 enabled: true
46
47readiness:
48 initialDelaySeconds: 10
49 periodSeconds: 10
50
51## Persist data to a persitent volume
52persistence:
53 enabled: true
54
55 ## A manually managed Persistent Volume and Claim
56 ## Requires persistence.enabled: true
57 ## If defined, PVC must be created manually before volume will be bound
58 # existingClaim:
59 volumeReclaimPolicy: Retain
60
61 ## database data Persistent Volume Storage Class
62 ## If defined, storageClassName: <storageClass>
63 ## If set to "-", storageClassName: "", which disables dynamic provisioning
64 ## If undefined (the default) or set to null, no storageClassName spec is
65 ## set, choosing the default provisioner. (gp2 on AWS, standard on
66 ## GKE, AWS & OpenStack)
67 ##
68 # storageClass: "-"
69 accessMode: ReadWriteMany
70 size: 1Gi
71 mountPath: /dockerdata-nfs
72 mountSubPath: netbox/nginx/data
73
74 # Names used for shared pv/pvcs across App & Nginx containers
75 staticPvName: netbox-static
76
77service:
78 type: NodePort
79 name: netbox-nginx
80 portName: netbox-nginx
81 internalPort: 8080
Alexis de Talhouët497a5f92018-09-18 08:40:07 -040082 nodePort: 20
Marc-Alexandre Choquette81a2df62018-07-14 13:04:33 -040083
Alexis de Talhouët9a6e9b52018-09-18 10:32:39 -040084resources: {}