[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / sdnc / components / sdnc-ansible-server / resources / config / RestServer_config
1 # Copyright © 2017 AT&T, 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 # Host definition
16 ip:     0.0.0.0
17 port:   {{.Values.service.internalPort}}
18
19 # Security (controls use of TLS encrypton and RestServer authentication)
20 tls:    no
21 auth:   no
22
23 # TLS certificates (must be built on application host)
24 priv:   provide_privated_key.pem
25 pub:    provide_public_key.pem
26
27 # RestServer authentication
28 id:     ${REST_USER}
29 psswd:  ${REST_PASSWORD}
30
31 # Mysql
32 host:   {{ include "common.mariadbService" $ }}
33 user:   ${DB_USER}
34 passwd: ${DB_PASSWORD}
35 db:     {{ index .Values "mariadb-galera" "config" "mysqlDatabase" }}
36
37 # Playbooks
38 from_files:             yes
39 ansible_path:           /opt/onap/sdnc/Playbooks
40 ansible_inv:            Ansible_inventory
41 ansible_temp:           PlaybooksTemp
42 timeout_seconds:        60
43
44 # Blocking on GetResults
45 getresults_block:       yes