blob: 4c823d165f13ae179fb4bee07b14522ed1482bd5 [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."
sousaeduabe73212020-11-04 15:13:35 +000046 vca_apiproxy:
47 type: string
48 description: "The VCA api proxy (native charms)"
49 default: ""
50 vca_cloud:
51 type: string
52 description: "The VCA lxd cloud name"
53 default: "localhost"
54 vca_k8s_cloud:
55 type: string
56 description: "The VCA K8s cloud name"
57 default: "k8scloud"
58 database_commonkey:
59 description: Database common key
60 type: string
61 default: osm
62 log_level:
63 description: "Log Level"
64 type: string
65 default: "INFO"