| sousaedu | 903379c | 2021-02-08 13:34:21 +0100 | [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 | 903379c | 2021-02-08 13:34:21 +0100 | [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 | 1072160 | 2021-05-18 17:28:17 +0200 | [diff] [blame] | 49 | mongodb_uri: |
| 50 | type: string |
| 51 | description: MongoDB URI (external database) |
| sousaedu | 3ddbbd1 | 2021-08-24 19:57:24 +0100 | [diff] [blame] | 52 | image_pull_policy: |
| 53 | type: string |
| 54 | description: | |
| 55 | ImagePullPolicy configuration for the pod. |
| 56 | Possible values: always, ifnotpresent, never |
| 57 | default: always |
| sousaedu | 540d937 | 2021-09-29 01:53:30 +0100 | [diff] [blame] | 58 | security_context: |
| 59 | description: Enables the security context of the pods |
| 60 | type: boolean |
| 61 | default: false |