mirror of
https://github.com/eliasstepanik/caddy-ingess.git
synced 2026-01-11 12:38:27 +00:00
* feat: Add plugin system to controller * add priority system and default empty tls connection policy
11 lines
234 B
Go
11 lines
234 B
Go
package store
|
|
|
|
// Options represents ingress controller config received through cli arguments.
|
|
type Options struct {
|
|
WatchNamespace string
|
|
ConfigMapName string
|
|
Verbose bool
|
|
LeaseId string
|
|
PluginsOrder []string
|
|
}
|