Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( PreInstallDoneLabel = []string{"cc-preinstall/done", "true"} PostUninstallDoneLabel = []string{"cc-postuninstall/done", "true"} KataRuntimeLabel = []string{"katacontainers.io/kata-runtime", "cleanup"} )
Functions ¶
This section is empty.
Types ¶
type CcRuntimeReconciler ¶
type CcRuntimeReconciler struct { client.Client Scheme *runtime.Scheme Log logr.Logger Namespace string // contains filtered or unexported fields }
CcRuntimeReconciler reconciles a CcRuntime object
func (*CcRuntimeReconciler) Reconcile ¶
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state. TODO(user): Modify the Reconcile function to compare the state specified by the CcRuntime object against the actual cluster state, and then perform operations to make the cluster state reflect the state specified by the user.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.9.2/pkg/reconcile
func (*CcRuntimeReconciler) SetupWithManager ¶
func (r *CcRuntimeReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type DaemonOperation ¶
type DaemonOperation string
DaemonOperation represents the operation the daemon is going to perform
const ( // InstallOperation denotes the installation operation InstallOperation DaemonOperation = "install" // UninstallOperation denotes the uninstallation operation UninstallOperation DaemonOperation = "uninstall" // PreInstallOperation denotes the pre-install operation PreInstallOperation DaemonOperation = "pre-install" //PostUninstallOperation denotes the post-uninstall operation PostUninstallOperation DaemonOperation = "post-uninstall" // UpgradeOperation denotes the upgrade operation UpgradeOperation DaemonOperation = "upgrade" RuntimeConfigFinalizer = "runtimeconfig.confidentialcontainers.org/finalizer" DefaultImagePullPolicy = corev1.PullAlways )