Skip to content

Commit

Permalink
chore: add flag for forked compose-go to ingore strick key checking
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jun 12, 2022
1 parent 4b26eb5 commit 7e78137
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/identify_feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func IdentifyFeatureFlag(name string, debug bool) (string, error) {
autogenRoutes := &lagoon.RoutesV2{}
mainRoutes := &lagoon.RoutesV2{}
activeStanbyRoutes := &lagoon.RoutesV2{}
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStanbyRoutes)
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStanbyRoutes, ignoreNonStringKeyErrors)
if err != nil {
return "", err
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/identify_ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func IdentifyPrimaryIngress(debug bool) (string, []string, []string, error) {
autogenRoutes := &lagoon.RoutesV2{}
mainRoutes := &lagoon.RoutesV2{}
activeStanbyRoutes := &lagoon.RoutesV2{}
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStanbyRoutes)
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStanbyRoutes, ignoreNonStringKeyErrors)
if err != nil {
return "", []string{}, []string{}, err
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/template_autogen_ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func AutogeneratedIngressGeneration(debug bool) error {
autogenRoutes := &lagoon.RoutesV2{}
mainRoutes := &lagoon.RoutesV2{}
activeStandbyRoutes := &lagoon.RoutesV2{}
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes)
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes, ignoreNonStringKeyErrors)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/template_ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func IngressTemplateGeneration(debug bool) error {
autogenRoutes := &lagoon.RoutesV2{}
mainRoutes := &lagoon.RoutesV2{}
activeStandbyRoutes := &lagoon.RoutesV2{}
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes)
err := collectBuildValues(debug, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes, ignoreNonStringKeyErrors)
if err != nil {
return err
}
Expand Down

0 comments on commit 7e78137

Please sign in to comment.