Explorar o código

chore: cleanup postrenderer

Soham Parekh %!s(int64=3) %!d(string=hai) anos
pai
achega
adf644d270
Modificáronse 1 ficheiros con 0 adicións e 5 borrados
  1. 0 5
      internal/helm/postrenderer.go

+ 0 - 5
internal/helm/postrenderer.go

@@ -10,7 +10,6 @@ import (
 	"strings"
 
 	"github.com/aws/aws-sdk-go/aws/arn"
-	"github.com/heroku/color"
 	"github.com/porter-dev/porter/internal/kubernetes"
 	"github.com/porter-dev/porter/internal/models"
 	"github.com/porter-dev/porter/internal/repository"
@@ -679,8 +678,6 @@ func (e *EnvironmentVariablePostrenderer) updatePodSpecs() error {
 
 		containers, ok := containersVal.([]interface{})
 
-		color.Magenta("containers: %v", containers)
-
 		if !ok {
 			continue
 		}
@@ -771,8 +768,6 @@ func (e *EnvironmentVariablePostrenderer) updatePodSpecs() error {
 			newContainers = append(newContainers, _container)
 		}
 
-		color.Red("newContainers: %v", containers)
-
 		podSpec["containers"] = newContainers
 	}