mirror of
https://github.com/eliasstepanik/caddy-ingess.git
synced 2026-01-11 12:38:27 +00:00
13 lines
299 B
Go
13 lines
299 B
Go
package store
|
|
|
|
// Options represents ingress controller config received through cli arguments.
|
|
type Options struct {
|
|
WatchNamespace string
|
|
ConfigMapName string
|
|
ClassName string
|
|
ClassNameRequired bool
|
|
Verbose bool
|
|
LeaseId string
|
|
PluginsOrder []string
|
|
}
|