blob: fe5cd63006ededb956917431fa53605e349d616c [file] [log] [blame]
sousaedu903379c2021-02-08 13:34:21 +01001# Copyright 2021 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:
David Garciad68e0b42021-06-28 16:50:42 +020023 ingress_class:
24 type: string
25 description: |
26 Ingress class name. This is useful for selecting the ingress to be used
27 in case there are multiple ingresses in the underlying k8s clusters.
sousaedu903379c2021-02-08 13:34:21 +010028 ingress_whitelist_source_range:
29 type: string
30 description: |
31 A comma-separated list of CIDRs to store in the
32 ingress.kubernetes.io/whitelist-source-range annotation.
33
34 This can be used to lock down access to
35 Keystone based on source IP address.
36 default: ""
37 tls_secret_name:
38 type: string
39 description: TLS Secret name
40 default: ""
41 site_url:
42 type: string
43 description: Ingress URL
44 default: ""
sousaedu3cc03162021-04-29 16:53:12 +020045 cluster_issuer:
46 type: string
47 description: Name of the cluster issuer for TLS certificates
48 default: ""
sousaedu10721602021-05-18 17:28:17 +020049 mongodb_uri:
50 type: string
51 description: MongoDB URI (external database)
sousaedu3ddbbd12021-08-24 19:57:24 +010052 image_pull_policy:
53 type: string
54 description: |
55 ImagePullPolicy configuration for the pod.
56 Possible values: always, ifnotpresent, never
57 default: always
sousaedu540d9372021-09-29 01:53:30 +010058 security_context:
59 description: Enables the security context of the pods
60 type: boolean
61 default: false