mirror of
https://github.com/eliasstepanik/caddy-ingess.git
synced 2026-01-10 20:18:28 +00:00
* feat: Add plugin system to controller * add priority system and default empty tls connection policy
11 lines
287 B
Go
11 lines
287 B
Go
package store
|
|
|
|
// PodInfo contains runtime information about the pod running the Ingress controller
|
|
type PodInfo struct {
|
|
Name string
|
|
Namespace string
|
|
// Labels selectors of the running pod
|
|
// This is used to search for other Ingress controller pods
|
|
Labels map[string]string
|
|
}
|