| sousaedu | b025f30 | 2020-11-16 14:40:14 +0000 | [diff] [blame] | 1 | # 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 | |
| 22 | options: |
| David Garcia | d68e0b4 | 2021-06-28 16:50:42 +0200 | [diff] [blame] | 23 | 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. |
| sousaedu | b025f30 | 2020-11-16 14:40:14 +0000 | [diff] [blame] | 28 | 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: "" |
| sousaedu | 3cc0316 | 2021-04-29 16:53:12 +0200 | [diff] [blame] | 45 | cluster_issuer: |
| 46 | type: string |
| 47 | description: Name of the cluster issuer for TLS certificates |
| 48 | default: "" |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 49 | image_pull_policy: |
| 50 | type: string |
| 51 | description: | |
| 52 | ImagePullPolicy configuration for the pod. |
| 53 | Possible values: always, ifnotpresent, never |
| 54 | default: always |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 55 | security_context: |
| 56 | description: Enables the security context of the pods |
| 57 | type: boolean |
| 58 | default: false |
| David Garcia | a2ebf4e | 2022-03-11 16:58:35 +0100 | [diff] [blame] | 59 | kafka_endpoint: |
| 60 | description: Host and port of Kafka in the format <host>:<port> |
| 61 | type: string |