/
aprogrammer
/
reverse-proxy-ms-yarp
Обзор
Документация
Войти
/
aprogrammer
/
reverse-proxy-ms-yarp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Kubernetes.Controller/YarpOptions.cs
29 строк
885 B
Igor Shishkin
Ingress status update fixes (#2136)
22 май 2023, 18:31
Не верифицирован
22 май 2023, 18:31
ad6ee6a
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Yarp.Kubernetes.Controller; public class YarpOptions { /// <summary> /// Defines a name of the ingress controller. IngressClass ".spec.controller" field should match this. /// This field is required. /// </summary> public string ControllerClass { get; set; } public bool ServerCertificates { get; set; } public string DefaultSslCertificate { get; set; } /// <summary> /// Name of the Kubernetes Service the ingress controller is running in. /// This field is required. /// </summary> public string ControllerServiceName { get; set; } /// <summary> /// Namespace of the Kubernetes Service the ingress controller is running in. /// This field is required. /// </summary> public string ControllerServiceNamespace { get; set; } }