blob: 5931336037312e3a4ed16e9a608ec889f3773e77 [file] [log] [blame]
sousaedub025f302020-11-16 14:40:14 +00001# 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.
sousaedub025f302020-11-16 14:40:14 +000028 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: ""
sousaedu3ddbbd12021-08-24 19:57:24 +010049 image_pull_policy:
50 type: string
51 description: |
52 ImagePullPolicy configuration for the pod.
53 Possible values: always, ifnotpresent, never
54 default: always
sousaedu540d9372021-09-29 01:53:30 +010055 security_context:
56 description: Enables the security context of the pods
57 type: boolean
58 default: false
David Garciaa2ebf4e2022-03-11 16:58:35 +010059 kafka_endpoint:
60 description: Host and port of Kafka in the format <host>:<port>
61 type: string