[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / contrib / components / awx / components / awx-postgres / values.yaml
1 # Copyright © 2019 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
23 # application image
24 image: postgres:10.4-alpine
25 pullPolicy: Always
26
27 # application configuration
28 config:
29   postgresUser: awx
30   postgresPassword: awx
31   postgresDB: awx
32
33 ingress:
34   enabled: false
35
36 # default number of instances
37 replicaCount: 1
38
39 nodeSelector: {}
40
41 affinity: {}
42
43 # probe configuration parameters
44 liveness:
45   initialDelaySeconds: 10
46   periodSeconds: 10
47   # necessary to disable liveness probe when setting breakpoints
48   # in debugger so K8s doesn't restart unresponsive container
49   enabled: true
50
51 readiness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54
55 ## Persist data to a persitent volume
56 persistence:
57   enabled: true
58   volumeReclaimPolicy: Retain
59
60   # Uncomment the storageClass parameter to use an existing PV
61   # that will match the following class.
62   # When uncomment the storageClass, the PV is not created anymore.
63
64   # storageClass: "nfs-dev-sc"
65
66   accessMode: ReadWriteOnce
67   size: 1Gi
68
69   # When using storage class, mountPath and mountSubPath are
70   # simply ignored.
71
72   mountPath: /dockerdata-nfs
73   mountSubPath: awx/pgdata
74
75 service:
76   type: ClusterIP
77   name: awx-postgresql
78   portName: awx-postgresql
79   internalPort: 5432
80   externalPort: 5432
81
82 resources: {}
83
84 #Pods Service Account
85 serviceAccount:
86   nameOverride: awx-postgres
87   roles:
88     - read