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 7e78137 commit 235f7b0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/tasks_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package cmd
import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/uselagoon/build-deploy-tool/internal/lagoon"
"github.com/uselagoon/build-deploy-tool/internal/tasklib"
"io/ioutil"
"os"
"strings"

"github.com/spf13/cobra"
"github.com/uselagoon/build-deploy-tool/internal/lagoon"
"github.com/uselagoon/build-deploy-tool/internal/tasklib"
)

var runPreRollout, runPostRollout, outOfClusterConfig bool
Expand Down Expand Up @@ -67,7 +68,7 @@ func getEnvironmentInfo() (lagoon.YAML, tasklib.TaskEnvironment, error) {
mainRoutes := new(lagoon.RoutesV2)
activeStandbyRoutes := new(lagoon.RoutesV2)

err := collectBuildValues(false, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes)
err := collectBuildValues(false, &activeEnv, &standbyEnv, &lagoonEnvVars, &lagoonValues, &lYAML, autogenRoutes, mainRoutes, activeStandbyRoutes, ignoreNonStringKeyErrors)
if err != nil {
return lagoon.YAML{}, nil, err
}
Expand Down

0 comments on commit 235f7b0

Please sign in to comment.