...

Source file src/edge-infra.dev/pkg/sds/lib/ci/dsds-sandboxes/constants.go

Documentation: edge-infra.dev/pkg/sds/lib/ci/dsds-sandboxes

     1  package dsdssandboxes
     2  
     3  import (
     4  	"path/filepath"
     5  )
     6  
     7  var (
     8  	DefaultPlaypitDir = filepath.Join(
     9  		"config", "clusters", "ret-edge-pltf-infra", "platform-infra", "projects", "preprod", "dsds-ien-playpits",
    10  	)
    11  
    12  	ProjectYamlFilename = "project.yaml"
    13  
    14  	// Some directories in the config directory do not contain projects
    15  	// used for creating clusters with KCC - we need to skip them
    16  	IgnoreDirectories = []string{
    17  		"base",
    18  		"TEMPLATE",
    19  	}
    20  )
    21  

View as plain text