Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow multiple files for app and env-data on each level #366

Merged
merged 3 commits into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions internal/myks/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,14 @@ func (a *Application) collectDataFiles() {
a.yttDataFiles = append(a.yttDataFiles, environmentDataFiles...)

protoDataFile := filepath.Join(a.Prototype, a.e.g.ApplicationDataFileName)
if ok, err := isExist(protoDataFile); ok && err == nil {
a.yttDataFiles = append(a.yttDataFiles, protoDataFile)
if files, err := filepath.Glob(protoDataFile); err == nil {
a.yttDataFiles = append(a.yttDataFiles, files...)
}

protoOverrideDataFiles := a.e.collectBySubpath(filepath.Join(a.e.g.PrototypeOverrideDir, a.prototypeDirName(), a.e.g.ApplicationDataFileName))
a.yttDataFiles = append(a.yttDataFiles, protoOverrideDataFiles...)
overrideDataFiles := append(protoOverrideDataFiles, a.e.collectBySubpath(filepath.Join(a.e.g.AppsDir, a.Name, a.e.g.ApplicationDataFileName))...)

overrideDataFiles := a.e.collectBySubpath(filepath.Join(a.e.g.AppsDir, a.Name, a.e.g.ApplicationDataFileName))
a.yttDataFiles = append(a.yttDataFiles, overrideDataFiles...)
}

Expand Down
8 changes: 3 additions & 5 deletions internal/myks/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ type Environment struct {
foundApplications map[string]string
}

func NewEnvironment(g *Globe, dir string) (*Environment, error) {
envDataFile := filepath.Join(dir, g.EnvironmentDataFileName)

func NewEnvironment(g *Globe, dir string, envDataFile string) (*Environment, error) {
env := &Environment{
Dir: dir,
EnvironmentDataFile: envDataFile,
Expand Down Expand Up @@ -359,8 +357,8 @@ func (e *Environment) collectBySubpath(subpath string) []string {
}
currentPath = filepath.Join(currentPath, level)
item := filepath.Join(currentPath, subpath)
if ok, err := isExist(item); ok && err == nil {
items = append(items, item)
if files, err := filepath.Glob(item); err == nil {
items = append(items, files...)
}
}
return items
Expand Down
27 changes: 17 additions & 10 deletions internal/myks/globe.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ type Globe struct {
// Data values schema file name
DataSchemaFileName string `default:"data-schema.ytt.yaml"`
// Application data file name
ApplicationDataFileName string `default:"app-data.ytt.yaml"`
ApplicationDataFileName string `default:"app-data*.yaml"`
// Environment data file name
EnvironmentDataFileName string `default:"env-data.ytt.yaml"`
EnvironmentDataFileName string `default:"env-data*.yaml"`
// Rendered environment data file name
RenderedEnvironmentDataFileName string `default:"env-data.yaml"`
// Myks runtime data file name
Expand Down Expand Up @@ -406,20 +406,27 @@ func (g *Globe) collectEnvironmentsInPath(searchPath string) []string {
return err
}
if d != nil && d.IsDir() {
if ok, err := isExist(filepath.Join(path, g.EnvironmentDataFileName)); err != nil {
files, err := filepath.Glob(filepath.Join(path, g.EnvironmentDataFileName))
if err != nil {
return err
} else if ok {
env, err := NewEnvironment(g, path)
}
if len(files) == 0 {
return nil
}
// Try all files in the directory until a valid environment is found
for _, file := range files {
env, err := NewEnvironment(g, path, file)
if err == nil {
g.environments[path] = env
result = append(result, path)
} else {
log.Debug().
Err(err).
Str("path", path).
Msg("Unable to collect environment, might be base or parent environment. Skipping")
return nil
}
}
log.Debug().
Str("path", path).
Strs("files", files).
Msg("Unable to collect environment, might be base or parent environment. Skipping")

}
return nil
})
Expand Down
13 changes: 10 additions & 3 deletions internal/myks/smart_mode.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ func (g *Globe) runSmartMode(changedFiles ChangedFiles) EnvAppMap {
return regexp.MustCompile("^" + g.GitPathPrefix + sample + "$")
}

globToRegexp := func(glob string) string {
r := glob
r = strings.ReplaceAll(r, ".", "\\.")
r = strings.ReplaceAll(r, "*", ".*")
return r
}

// Subdirectories of apps and prototypes are named after plugins
plugins := []string{
g.ArgoCDDataDirName,
Expand All @@ -86,17 +93,17 @@ func (g *Globe) runSmartMode(changedFiles ChangedFiles) EnvAppMap {
"env": {
e("(" + g.EnvironmentBaseDir + ".*)/" + g.EnvsDir + "/" + g.YttStepDirName + "/.*"),
e("(" + g.EnvironmentBaseDir + ".*)/" + g.EnvsDir + "/" + g.ArgoCDDataDirName + "/.*"),
e("(" + g.EnvironmentBaseDir + ".*)/" + g.EnvironmentDataFileName),
e("(" + g.EnvironmentBaseDir + ".*)/" + globToRegexp(g.EnvironmentDataFileName)),
},
// Prototype name is the only submatch
"prototype": {
e(g.PrototypesDir + "/(.+)/" + pluginsPattern + "/.*"),
e(g.PrototypesDir + "/(.+)/" + g.ApplicationDataFileName),
e(g.PrototypesDir + "/(.+)/" + globToRegexp(g.ApplicationDataFileName)),
},
// Env path and app name are the submatches
"app": {
e("(" + g.EnvironmentBaseDir + ".*)/" + g.AppsDir + "/([^/]+)/" + pluginsPattern + "/.*"),
e("(" + g.EnvironmentBaseDir + ".*)/" + g.AppsDir + "/([^/]+)/" + g.ApplicationDataFileName),
e("(" + g.EnvironmentBaseDir + ".*)/" + g.AppsDir + "/([^/]+)/" + globToRegexp(g.ApplicationDataFileName)),
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/myks/smart_mode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func TestGlobe_runSmartMode(t *testing.T) {
},
{
"change to app",
ChangedFiles{"envs/env1/_apps/app1/app-data.ytt.yaml": "M"},
ChangedFiles{"envs/env1/_apps/app1/app-data.variable.yaml": "M"},
renderedEnvApps,
EnvAppMap{
"envs/env1": {"app1"},
Expand Down
Loading