Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Selector ¶
type Selector interface { // Matches returns the number of matches that this selector // has with the given object metadata and dnsName. // The greater the returned number, the more 'specific' of a // match this meta/dnsName pair has with this selector. // In some cases, the selector may 'match' (i.e. the bool == true), // but the number of matches may be zero (i.e. for a label selector, // where an empty selector matches all). Matches(meta metav1.ObjectMeta, dnsName string) (bool, int) }
Selector determines whether a kubernetes object matches the criteria checked by the implementation.
func DNSNames ¶
func DNSNames(sel cmacme.CertificateDNSNameSelector) Selector
func DNSZones ¶
func DNSZones(sel cmacme.CertificateDNSNameSelector) Selector
func Labels ¶
func Labels(sel cmacme.CertificateDNSNameSelector) Selector
Click to show internal directories.
Click to hide internal directories.