blob: 82ea1e037213cb8893a674b123b5cb5c41b5f8f9 [file] [log] [blame]
Mohammed Nasercd30d442024-05-29 10:32:57 -04001# Copyright (c) 2024 VEXXHOST, Inc.
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
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020015ingress_class_name: "{{ atmosphere_ingress_class_name }}"
16
17# ingress_name: string
18
19# ingress_namespace: string
20
21# ingress_host: string
22
23# ingress_service_name: string
24
25# ingress_service_port: number
26
27# ingress_secret_name: string
Mohammed Nasercd30d442024-05-29 10:32:57 -040028
29# List of annotations to apply to the Ingress
30#
31# NOTE(mnaser): These are typically used by the role that calls
32# the ingress role to pass annotations to the
33# Ingress resource. You should use role-specific
34# variable to pass annotations or use the
Oleksandr K.d49adf82024-07-29 15:54:24 +020035# ingress_default_annotations variable to apply
Mohammed Nasercd30d442024-05-29 10:32:57 -040036# annotations to all Ingress resources.
37ingress_annotations: {}
38
Oleksandr K.d49adf82024-07-29 15:54:24 +020039# List of annotations to apply to all Ingress resources as default
40ingress_default_annotations: "{{ ingress_global_annotations | default(atmosphere_ingress_annotations) }}"
Mohammed Naser49b09332025-02-05 13:42:57 -050041
42# Use default TLS certificate
43ingress_use_default_tls_certificate: false