Skip to content

Commit 62f50d5

Browse files
committed
Reverts some differences
1 parent 5246099 commit 62f50d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/patterns/declarative/pkg/kubectlcmd/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (c *Client) ApplyAlt(ctx context.Context, namespace string, manifest string
8888
if err != nil {
8989
log.WithValues("stdout", stdout.String()).WithValues("stderr", stderr.String()).Error(err, "error from running kubectl apply")
9090
log.Info(fmt.Sprintf("manifest:\n%v", manifest))
91-
return fmt.Errorf("error from running apply: %v", err)
91+
return fmt.Errorf("error from running kubectl apply: %v", err)
9292
}
9393

9494
log.WithValues("stdout", stdout.String()).WithValues("stderr", stderr.String()).V(2).Info("ran kubectl apply")

pkg/patterns/declarative/reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (r *Reconciler) Reconcile(request reconcile.Request) (reconcile.Result, err
108108

109109
func (r *Reconciler) reconcileExists(ctx context.Context, name types.NamespacedName, instance DeclarativeObject) (reconcile.Result, error) {
110110
log := log.Log
111-
log.WithValues("object", name.String()).Info("reconciling objects in apply")
111+
log.WithValues("object", name.String()).Info("reconciling")
112112

113113
var fs filesys.FileSystem
114114
if r.IsKustomizeOptionUsed() {

0 commit comments

Comments
 (0)