Documentation ¶
Index ¶
- func NameValidation(name string) string
- func RandomSequence(n int) string
- type ConfigMapReconciler
- func (r *ConfigMapReconciler) CopyCCMToCM(ctx context.Context, configmap *corev1.ConfigMap) error
- func (r *ConfigMapReconciler) CreateNewCCM(ctx context.Context, configMap *corev1.ConfigMap, ...) error
- func (r *ConfigMapReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
- func (r *ConfigMapReconciler) SetupWithManager(mgr ctrl.Manager) error
- func (r *ConfigMapReconciler) UpdateConfigMap(ctx context.Context, configMap *corev1.ConfigMap) error
- type SecretReconciler
- func (r *SecretReconciler) CopyCSToSecret(ctx context.Context, secret *corev1.Secret) error
- func (r *SecretReconciler) CreateNewCS(ctx context.Context, secret *corev1.Secret, ...) error
- func (r *SecretReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
- func (r *SecretReconciler) SetupWithManager(mgr ctrl.Manager) error
- func (r *SecretReconciler) UpdateSecret(ctx context.Context, secret *corev1.Secret) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NameValidation ¶
func RandomSequence ¶
Types ¶
type ConfigMapReconciler ¶
type ConfigMapReconciler struct { client.Client Scheme *runtime.Scheme EventRecorder record.EventRecorder }
ConfigMapReconciler reconciles a ConfigMap object
func (*ConfigMapReconciler) CopyCCMToCM ¶
copyCCMtoCM
func (*ConfigMapReconciler) CreateNewCCM ¶
func (r *ConfigMapReconciler) CreateNewCCM(ctx context.Context, configMap *corev1.ConfigMap, currentccm *customConfigMapv1alpha1.CustomConfigMap) error
func (*ConfigMapReconciler) 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 ConfigMap 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.8.3/pkg/reconcile
func (*ConfigMapReconciler) SetupWithManager ¶
func (r *ConfigMapReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
func (*ConfigMapReconciler) UpdateConfigMap ¶
func (r *ConfigMapReconciler) UpdateConfigMap(ctx context.Context, configMap *corev1.ConfigMap) error
Update ConfigMap
type SecretReconciler ¶
type SecretReconciler struct { client.Client Scheme *runtime.Scheme EventRecorder record.EventRecorder }
SecretReconciler reconciles a Secret object
func (*SecretReconciler) CopyCSToSecret ¶
copyCStoSecret
func (*SecretReconciler) CreateNewCS ¶
func (r *SecretReconciler) CreateNewCS(ctx context.Context, secret *corev1.Secret, currentcs *customSecretv1alpha1.CustomSecret) error
func (*SecretReconciler) 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 Secret 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.8.3/pkg/reconcile
func (*SecretReconciler) SetupWithManager ¶
func (r *SecretReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
func (*SecretReconciler) UpdateSecret ¶
Update Secret