blob: eeed96b5ea3dae61eecb1cde79f6bde605fb95a9 [file] [log] [blame]
sousaeduabe73212020-11-04 15:13:35 +00001# Copyright 2020 Canonical Ltd.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# 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, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14#
15# For those usages not covered by the Apache License, Version 2.0 please
16# contact: legal@canonical.com
17#
18# To get in touch with the maintainers, please contact:
19# osm-charmers@lists.launchpad.net
20##
21
22options:
23 vca_host:
24 type: string
25 description: "The VCA host."
26 default: "admin"
27 vca_port:
28 type: int
29 description: "The VCA port."
30 default: 17070
31 vca_user:
32 type: string
33 description: "The VCA user name."
34 default: "admin"
35 vca_password:
36 type: string
37 description: "The VCA user password."
38 default: "secret"
39 vca_pubkey:
40 type: string
41 description: "The VCA public key."
42 default: "secret"
43 vca_cacert:
44 type: string
45 description: "The VCA cacert."
46 default: ""
47 vca_apiproxy:
48 type: string
49 description: "The VCA api proxy (native charms)"
50 default: ""
51 vca_cloud:
52 type: string
53 description: "The VCA lxd cloud name"
54 default: "localhost"
55 vca_k8s_cloud:
56 type: string
57 description: "The VCA K8s cloud name"
58 default: "k8scloud"
59 database_commonkey:
60 description: Database common key
61 type: string
62 default: osm
63 log_level:
64 description: "Log Level"
65 type: string
66 default: "INFO"