pub type Group = String;
Expand description
Group refers to a Kubernetes Group. It must either be an empty string or a RFC 1123 subdomain.
This validation is based off of the corresponding Kubernetes validation: https://github.com/kubernetes/apimachinery/blob/02cfb53916346d085a6c6c7c66f882e3c6b0eca6/pkg/util/validation/validation.go#L208
Valid values include:
- “” - empty string implies core Kubernetes API group
- “networking.k8s.io”
- “foo.example.com”
Invalid values include:
- “example.com/bar” - “/” is an invalid character
Aliased Type§
struct Group { /* private fields */ }