Upgrade APPC to use common mariadb galera charts
[oom.git] / kubernetes / contrib / charts / netbox / charts / netbox-postgres / 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   nodePortPrefix: 302
21   persistence: {}
22
23 # application image
24 repository: docker.io
25 image: postgres:10.2-alpine
26 pullPolicy: Always
27
28 # application configuration
29 config:
30   postgresUser: netbox
31   postgresPassword: J5brHrAXFLQSif0K
32   postgresDB: netbox
33
34 ingress:
35   enabled: false
36
37 # default number of instances
38 replicaCount: 1
39
40 nodeSelector: {}
41
42 affinity: {}
43
44 # probe configuration parameters
45 liveness:
46   initialDelaySeconds: 10
47   periodSeconds: 10
48   # necessary to disable liveness probe when setting breakpoints
49   # in debugger so K8s doesn't restart unresponsive container
50   enabled: true
51
52 readiness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
55
56 ## Persist data to a persitent volume
57 persistence:
58   enabled: true
59   volumeReclaimPolicy: Retain
60   storageClass: "nfs-dev-sc"
61   accessMode: ReadWriteMany
62   size: 1Gi
63
64 service:
65   type: ClusterIP
66   name: netbox-postgres
67   portName: netbox-postgres
68   internalPort: 5432
69   externalPort: 5432
70
71 resources: {}