Documentation ¶
Index ¶
- Constants
- type Adder
- func (a *Adder) Add(mgr manager.Manager) error
- func (a *Adder) InjectCFClient(c *constraintclient.Client)
- func (a *Adder) InjectControllerSwitch(cs *watch.ControllerSwitch)
- func (a *Adder) InjectGetPod(getPod func(context.Context) (*corev1.Pod, error))
- func (a *Adder) InjectTracker(t *readiness.Tracker)
- func (a *Adder) InjectWatchManager(wm *watch.Manager)
- type ReconcileConstraintTemplate
Constants ¶
View Source
const ( // ErrCreateCode indicates a problem creating a ConstraintTemplate CRD. ErrCreateCode = "create_error" // ErrUpdateCode indicates a problem updating a ConstraintTemplate CRD. ErrUpdateCode = "update_error" // ErrConversionCode indicates a problem converting a ConstraintTemplate CRD. ErrConversionCode = "conversion_error" // ErrIngestCode indicates a problem ingesting a ConstraintTemplate Rego code. ErrIngestCode = "ingest_error" // ErrParseCode indicates a problem parsing a ConstraintTemplate. ErrParseCode = "parse_error" )
View Source
const ( // ErrGenerateVAPState indicates a problem generating a VAP. ErrGenerateVAPState = "error" // GeneratedVAPState indicates a VAP was generated. GeneratedVAPState = "generated" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adder ¶
type Adder struct { CFClient *constraintclient.Client WatchManager *watch.Manager ControllerSwitch *watch.ControllerSwitch Tracker *readiness.Tracker GetPod func(context.Context) (*corev1.Pod, error) }
func (*Adder) Add ¶
Add creates a new ConstraintTemplate Controller and adds it to the Manager with default RBAC. The Manager will set fields on the Controller and Start it when the Manager is Started.
func (*Adder) InjectCFClient ¶ added in v3.14.0
func (a *Adder) InjectCFClient(c *constraintclient.Client)
func (*Adder) InjectControllerSwitch ¶
func (a *Adder) InjectControllerSwitch(cs *watch.ControllerSwitch)
func (*Adder) InjectGetPod ¶
func (*Adder) InjectTracker ¶
func (*Adder) InjectWatchManager ¶
type ReconcileConstraintTemplate ¶
ReconcileConstraintTemplate reconciles a ConstraintTemplate object.
func (*ReconcileConstraintTemplate) Reconcile ¶
func (r *ReconcileConstraintTemplate) Reconcile(ctx context.Context, request reconcile.Request) (reconcile.Result, error)
Reconcile reads that state of the cluster for a ConstraintTemplate object and makes changes based on the state read and what is in the ConstraintTemplate.Spec.
Click to show internal directories.
Click to hide internal directories.