kubernetes/staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/union_content.go

type unionCAContent

var _

var _

// NewUnionCAContentProvider returns a CAContentProvider that is a union of other CAContentProviders
func NewUnionCAContentProvider(caContentProviders ...CAContentProvider) CAContentProvider {}

// Name is just an identifier
func (c unionCAContent) Name() string {}

// CurrentCABundleContent provides ca bundle byte content
func (c unionCAContent) CurrentCABundleContent() []byte {}

// CurrentCABundleContent provides ca bundle byte content
func (c unionCAContent) VerifyOptions() (x509.VerifyOptions, bool) {}

// AddListener adds a listener to be notified when the CA content changes.
func (c unionCAContent) AddListener(listener Listener) {}

// AddListener adds a listener to be notified when the CA content changes.
func (c unionCAContent) RunOnce(ctx context.Context) error {}

// Run runs the controller
func (c unionCAContent) Run(ctx context.Context, workers int) {}