Merge "Remove -a build flag"
[multicloud/k8s.git] / kud / tests / vnfs / testrb / helm / vault-consul-dev / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   persistence: {}
21
22 # application image
23 image:
24   consul: consul:1.0.6
25   vault: vault:0.10.0
26 pullPolicy: Always
27
28 # flag to enable debugging - application support required
29 debugEnabled: false
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34 config:
35   consul:
36     server: true
37     log_level: INFO
38     server: true
39     data_dir: '/consul/data'
40     ports:
41       http: 8500
42       https: -1
43
44   vault:
45     storage:
46       consul:
47         address: localhost:8500
48         path: vault
49     listener:
50       tcp:
51         address: '[::]:8200'
52         tls_disable: true
53     disable_mlock: true
54
55 # default number of instances
56 replicaCount: 1
57
58 nodeSelector: {}
59
60 affinity: {}
61
62 # probe configuration parameters
63 liveness:
64   initialDelaySeconds: 10
65   periodSeconds: 10
66   # necessary to disable liveness probe when setting breakpoints
67   # in debugger so K8s doesn't restart unresponsive container
68   enabled: true
69
70 readiness:
71   initialDelaySeconds: 10
72   periodSeconds: 10
73
74 persistence:
75   enabled: true
76   volumeReclaimPolicy: Retain
77   accessMode: ReadWriteOnce
78   size: 2Gi
79   mountPath: /dockerdata-nfs
80   mountSubPath: sms/consul/data
81
82 service:
83   type: NodePort
84   name: vault-consul
85   portName: vault-consul
86   internalPort: 8200
87   nodePort: 44
88
89 ingress:
90   enabled: false