🔨 Bring in models.Resources dependency to kubernetes package

This commit is contained in:
M. Mert Yildiran
2022-12-29 03:41:35 +03:00
parent 5e269831e4
commit 6d06c53ebf
5 changed files with 15 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"regexp"
"github.com/kubeshark/base/pkg/models"
"github.com/kubeshark/kubeshark/kubernetes"
"github.com/kubeshark/kubeshark/utils"
"github.com/rs/zerolog/log"
)
@@ -54,8 +54,8 @@ type DockerConfig struct {
}
type ResourcesConfig struct {
Worker models.Resources `yaml:"worker"`
Hub models.Resources `yaml:"hub"`
Worker kubernetes.Resources `yaml:"worker"`
Hub kubernetes.Resources `yaml:"hub"`
}
type TapConfig struct {