Documentation ¶
Index ¶
- func ComputeInputHash(spec v1alpha1.KubernetesApplySpec, ...) (string, error)
- type Reconciler
- func (r *Reconciler) CreateBuilder(mgr ctrl.Manager) (*builder.Builder, error)
- func (r *Reconciler) ForceApply(ctx context.Context, nn types.NamespacedName, ...) (v1alpha1.KubernetesApplyStatus, error)
- func (r *Reconciler) Reconcile(ctx context.Context, request reconcile.Request) (reconcile.Result, error)
- type Result
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ComputeInputHash ¶
func ComputeInputHash(spec v1alpha1.KubernetesApplySpec, imageMaps map[types.NamespacedName]*v1alpha1.ImageMap) (string, error)
Compute the hash of all the inputs we fed into this apply.
Types ¶
type Reconciler ¶
type Reconciler struct {
// contains filtered or unexported fields
}
func NewReconciler ¶
func NewReconciler(ctrlClient ctrlclient.Client, k8sClient k8s.Client, scheme *runtime.Scheme, dkc build.DockerKubeConnection, kubeContext k8s.KubeContext, st store.RStore, cfgNS k8s.Namespace) *Reconciler
func (*Reconciler) CreateBuilder ¶
func (*Reconciler) ForceApply ¶
func (r *Reconciler) ForceApply( ctx context.Context, nn types.NamespacedName, spec v1alpha1.KubernetesApplySpec, imageMaps map[types.NamespacedName]*v1alpha1.ImageMap) (v1alpha1.KubernetesApplyStatus, error)
Inject the images into the YAML and apply it to the cluster, unconditionally.
Update the apiserver when finished.
We expose this as a public method as a hack! Currently, in Tilt, BuildController handles dependencies between resources. The API server doesn't know about build dependencies yet. So Tiltfile-owned resources are applied manually, rather than going through the normal reconcile system.
type Result ¶ added in v0.21.0
type Result struct { Spec v1alpha1.KubernetesApplySpec ImageMapSpecs []v1alpha1.ImageMapSpec ImageMapStatuses []v1alpha1.ImageMapStatus AppliedObjects objectRefSet Status v1alpha1.KubernetesApplyStatus }
Keeps track of the state we currently know about.
Click to show internal directories.
Click to hide internal directories.