@@ -12,6 +12,8 @@ import (
1212 "sigs.k8s.io/kustomize/api/krusty"
1313 "sigs.k8s.io/kustomize/kyaml/filesys"
1414
15+ "github.com/openmcp-project/bootstrapper/internal/config"
16+
1517 gitconfig "github.com/openmcp-project/bootstrapper/internal/git-config"
1618 "github.com/openmcp-project/bootstrapper/internal/log"
1719 ocmcli "github.com/openmcp-project/bootstrapper/internal/ocm-cli"
@@ -41,7 +43,7 @@ type DeploymentRepoManager struct {
4143 // +optional
4244 OcmConfigPath string
4345
44- Config * DeploymentRepoConfig
46+ Config * config. BootstrapperConfig
4547
4648 // TargetCluster is the Kubernetes cluster to which the deployment will be applied
4749 TargetCluster * clusters.Cluster
@@ -71,7 +73,7 @@ type DeploymentRepoManager struct {
7173}
7274
7375// NewDeploymentRepoManager creates a new DeploymentRepoManager with the specified parameters.
74- func NewDeploymentRepoManager (config * DeploymentRepoConfig , targetCluster * clusters.Cluster , gitConfigPath , ocmConfigPath string ) * DeploymentRepoManager {
76+ func NewDeploymentRepoManager (config * config. BootstrapperConfig , targetCluster * clusters.Cluster , gitConfigPath , ocmConfigPath string ) * DeploymentRepoManager {
7577 return & DeploymentRepoManager {
7678 Config : config ,
7779 TargetCluster : targetCluster ,
@@ -384,7 +386,7 @@ func (m *DeploymentRepoManager) UpdateResourcesKustomization() error {
384386 len (m .Config .Providers .PlatformServices )+
385387 len (m .crdFiles ))
386388
387- //len(m.Config.OpenMCPOperator.Manifests))
389+ // len(m.Config.OpenMCPOperator.Manifests))
388390
389391 for _ , crdFile := range m .crdFiles {
390392 files = append (files , filepath .Join (CRDsDirectoryName , filepath .Base (crdFile )))
0 commit comments