diff --git a/pkg/app/pipedv1/plugin/kubernetes/deployment/sync.go b/pkg/app/pipedv1/plugin/kubernetes/deployment/sync.go index 23492cca32..1a4eb97f40 100644 --- a/pkg/app/pipedv1/plugin/kubernetes/deployment/sync.go +++ b/pkg/app/pipedv1/plugin/kubernetes/deployment/sync.go @@ -51,7 +51,7 @@ func (p *Plugin) executeK8sSyncStage(ctx context.Context, input *sdk.ExecuteStag } // TODO: find the way to hold the tool registry and loader in the plugin. - // Currently, we create them every time the stage is executed beucause we can't pass input.Client.toolRegistry to the plugin when starting the plugin. + // Currently, we create them every time the stage is executed because we can't pass input.Client.toolRegistry to the plugin when starting the plugin. toolRegistry := toolregistry.NewRegistry(input.Client.ToolRegistry()) loader := provider.NewLoader(toolRegistry) diff --git a/pkg/app/pipedv1/plugin/kubernetes/livestate/plugin.go b/pkg/app/pipedv1/plugin/kubernetes/livestate/plugin.go index c3bd0769c8..ecfb78165a 100644 --- a/pkg/app/pipedv1/plugin/kubernetes/livestate/plugin.go +++ b/pkg/app/pipedv1/plugin/kubernetes/livestate/plugin.go @@ -83,7 +83,7 @@ func (p *Plugin) GetLivestate(ctx context.Context, _ *kubeconfig.KubernetesPlugi } // TODO: find the way to hold the tool registry and loader in the plugin. - // Currently, we create them every time the stage is executed beucause we can't pass input.Client.toolRegistry to the plugin when starting the plugin. + // Currently, we create them every time the stage is executed because we can't pass input.Client.toolRegistry to the plugin when starting the plugin. toolRegistry := toolregistry.NewRegistry(input.Client.ToolRegistry()) manifests, err := p.loadManifests(ctx, input, cfg.Spec, provider.NewLoader(toolRegistry), input.Logger) diff --git a/pkg/app/pipedv1/plugin/kubernetes_multicluster/deployment/sync.go b/pkg/app/pipedv1/plugin/kubernetes_multicluster/deployment/sync.go index b308f8b4ba..8756594d45 100644 --- a/pkg/app/pipedv1/plugin/kubernetes_multicluster/deployment/sync.go +++ b/pkg/app/pipedv1/plugin/kubernetes_multicluster/deployment/sync.go @@ -126,7 +126,7 @@ func (p *Plugin) sync( } // TODO: find the way to hold the tool registry and loader in the plugin. - // Currently, we create them every time the stage is executed beucause we can't pass input.Client.toolRegistry to the plugin when starting the plugin. + // Currently, we create them every time the stage is executed because we can't pass input.Client.toolRegistry to the plugin when starting the plugin. toolRegistry := toolregistry.NewRegistry(input.Client.ToolRegistry()) loader := provider.NewLoader(toolRegistry) diff --git a/pkg/app/pipedv1/plugin/kubernetes_multicluster/livestate/plugin.go b/pkg/app/pipedv1/plugin/kubernetes_multicluster/livestate/plugin.go index ad07001e68..cf4e508a13 100644 --- a/pkg/app/pipedv1/plugin/kubernetes_multicluster/livestate/plugin.go +++ b/pkg/app/pipedv1/plugin/kubernetes_multicluster/livestate/plugin.go @@ -79,7 +79,7 @@ func (p Plugin) GetLivestate(ctx context.Context, _ *sdk.ConfigNone, deployTarge } // TODO: find the way to hold the tool registry and loader in the plugin. - // Currently, we create them every time the stage is executed beucause we can't pass input.Client.toolRegistry to the plugin when starting the plugin. + // Currently, we create them every time the stage is executed because we can't pass input.Client.toolRegistry to the plugin when starting the plugin. toolRegistry := toolregistry.NewRegistry(input.Client.ToolRegistry()) liveStates := make([]sdk.ApplicationLiveState, 0, len(targetConfigs)) diff --git a/pkg/config/application.go b/pkg/config/application.go index a9feea84aa..7c8d2b222d 100644 --- a/pkg/config/application.go +++ b/pkg/config/application.go @@ -65,7 +65,7 @@ type GenericApplicationSpec struct { type DeploymentPlanner struct { // Disable auto-detecting to use QUICK_SYNC or PROGRESSIVE_SYNC. - // Always use the speficied pipeline for all deployments. + // Always use the specified pipeline for all deployments. AlwaysUsePipeline bool `json:"alwaysUsePipeline"` // Automatically reverts all deployment changes on failure. // Default is true. diff --git a/pkg/configv1/application.go b/pkg/configv1/application.go index 943588619b..0eae80e8d6 100644 --- a/pkg/configv1/application.go +++ b/pkg/configv1/application.go @@ -65,7 +65,7 @@ type GenericApplicationSpec struct { type DeploymentPlanner struct { // Disable auto-detecting to use QUICK_SYNC or PROGRESSIVE_SYNC. - // Always use the speficied pipeline for all deployments. + // Always use the specified pipeline for all deployments. AlwaysUsePipeline bool `json:"alwaysUsePipeline"` // Automatically reverts all deployment changes on failure. // Default is true.