Skip to content

Commit

Permalink
Remove unused import and print statement in application controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayed-Imran committed Mar 10, 2024
1 parent c8069a4 commit d9f1e20
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions controllers/application_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package controllers

import (
"context"
"fmt"
"time"

appsv1 "k8s.io/api/apps/v1"
Expand Down Expand Up @@ -91,7 +90,6 @@ func createDeployment(app *apiv1alpha1.Application, r *ApplicationReconciler, ct
if err != nil {
if errors.IsNotFound(err) {
// Deployment not found, creating a new one
fmt.Println("Creating Deployment for Application", app.Spec)
deployment = &appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Name: app.Name,
Expand Down

0 comments on commit d9f1e20

Please sign in to comment.