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

Updates Vendor Dependencies #1762

Merged
merged 7 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ jobs:
working_directory: /go/src/github.com/astronomer/astro-cli
docker:
- image: quay.io/astronomer/ap-dind-golang:24.0.6
resource_class: large
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linting became a little heavier.

steps:
- lint
test:
Expand Down
14 changes: 4 additions & 10 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ linters-settings:
lines: 100
statements: 50
gci:
local-prefixes: github.com/golangci/golangci-lint
sections:
- prefix(github.com/golangci/golangci-lint)
goconst:
min-len: 3
min-occurrences: 3
Expand All @@ -44,14 +45,8 @@ linters-settings:
local-prefixes: github.com/golangci/golangci-lint
revive:
confidence: 0
gomnd:
settings:
mnd:
# don't include the "operation" and "assign"
checks: [argument, case, condition, return]
ignored-numbers: 2,10,64 # numbers used by strconv
govet:
check-shadowing: true
shadow: true
settings:
printf:
funcs:
Expand Down Expand Up @@ -82,14 +77,13 @@ linters:
- dogsled
- dupl
- errcheck
- exportloopref
- copyloopvar
- exhaustive
- goconst
- gocritic
- gocyclo
- gofumpt
- goimports
- gomnd
- goprintffuncname
- gosec
- gosimple
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ generate:

lint:
go run github.com/golangci/golangci-lint/cmd/golangci-lint version
go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout 15m0s
go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout 15m0s --verbose

build:
go build -o ${OUTPUT} -ldflags "${LDFLAGS_VERSION}" main.go
Expand Down
2 changes: 1 addition & 1 deletion airflow-client/airflow-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (c *HTTPClient) DoAirflowClient(doOpts *httputil.DoOptions) (*Response, err
}
}

response, err := c.Do(doOpts)
response, err := c.Do(doOpts) //nolint:bodyclose
schnie marked this conversation as resolved.
Show resolved Hide resolved
if err != nil {
return nil, err
}
Expand Down
38 changes: 37 additions & 1 deletion airflow-client/mocks/Client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 50 additions & 24 deletions airflow/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import (
"text/tabwriter"
"time"

"github.com/docker/docker/api/types/container"

"github.com/astronomer/astro-cli/airflow/runtimes"

semver "github.com/Masterminds/semver/v3"
Expand All @@ -25,16 +27,14 @@ import (
"github.com/astronomer/astro-cli/pkg/fileutil"
"github.com/astronomer/astro-cli/pkg/util"
"github.com/astronomer/astro-cli/settings"
composeInterp "github.com/compose-spec/compose-go/interpolation"
"github.com/compose-spec/compose-go/loader"
"github.com/compose-spec/compose-go/types"
"github.com/compose-spec/compose-go/v2/interpolation"
"github.com/compose-spec/compose-go/v2/loader"
composetypes "github.com/compose-spec/compose-go/v2/types"
"github.com/docker/cli/cli/command"
"github.com/docker/cli/cli/config/configfile"
"github.com/docker/cli/cli/flags"
"github.com/docker/compose/v2/cmd/formatter"
"github.com/docker/compose/v2/pkg/api"
"github.com/docker/compose/v2/pkg/compose"
docker_types "github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/versions"
"github.com/pkg/browser"
"github.com/pkg/errors"
Expand Down Expand Up @@ -177,7 +177,7 @@ func DockerComposeInit(airflowHome, envFile, dockerfile, imageName string) (*Doc
logrus.Fatalf("error init compose client %s", err)
}

composeService := compose.NewComposeService(dockerCli.Client(), &configfile.ConfigFile{})
composeService := compose.NewComposeService(dockerCli)

return &DockerCompose{
airflowHome: airflowHome,
Expand Down Expand Up @@ -253,6 +253,9 @@ func (d *DockerCompose) Start(imageName, settingsFile, composeFile, buildSecretS
// Start up our project
err = d.composeService.Up(context.Background(), project, api.UpOptions{
Create: api.CreateOptions{},
Start: api.StartOptions{
Project: project,
},
})
if err != nil {
return errors.Wrap(err, composeRecreateErrMsg)
Expand Down Expand Up @@ -330,7 +333,7 @@ func (d *DockerCompose) Stop(waitForExit bool) error {
}

// Pause our project
err = d.composeService.Stop(context.Background(), project, api.StopOptions{})
err = d.composeService.Stop(context.Background(), project.Name, api.StopOptions{})
if err != nil {
return errors.Wrap(err, composePauseErrMsg)
}
Expand Down Expand Up @@ -400,12 +403,21 @@ func (d *DockerCompose) PS() error {

// Kill stops a local airflow development cluster
func (d *DockerCompose) Kill() error {
// Killing an already killed project produces an unsightly warning,
// so we briefly switch to a higher level before running the kill command.
// We then swap back to the original level.
originalLevel := logrus.GetLevel()
logrus.SetLevel(logrus.ErrorLevel)

// Shut down our project
err := d.composeService.Down(context.Background(), d.projectName, api.DownOptions{Volumes: true, RemoveOrphans: true})
if err != nil {
return errors.Wrap(err, composeStopErrMsg)
}

// Restore the log level.
logrus.SetLevel(originalLevel)
schnie marked this conversation as resolved.
Show resolved Hide resolved

return nil
}

Expand All @@ -421,7 +433,7 @@ func (d *DockerCompose) Logs(follow bool, containerNames ...string) error {
return errors.New("cannot view logs, project not running")
}

consumer := formatter.NewLogConsumer(context.Background(), os.Stdout, true, false)
consumer := formatter.NewLogConsumer(context.Background(), os.Stdout, os.Stderr, true, false, true)

err = d.composeService.Logs(context.Background(), d.projectName, consumer, api.LogOptions{
Services: containerNames,
Expand All @@ -437,7 +449,7 @@ func (d *DockerCompose) Logs(follow bool, containerNames ...string) error {
// Run creates using docker exec
// inspired from https://github.com/docker/cli/tree/master/cli/command/container
func (d *DockerCompose) Run(args []string, user string) error {
execConfig := &docker_types.ExecConfig{
execConfig := &container.ExecOptions{
AttachStdout: true,
Cmd: args,
}
Expand All @@ -462,7 +474,7 @@ func (d *DockerCompose) Run(args []string, user string) error {
return errors.New("exec ID is empty")
}

execStartCheck := docker_types.ExecStartCheck{
execStartCheck := container.ExecStartOptions{
Detach: execConfig.Detach,
}

Expand Down Expand Up @@ -681,7 +693,7 @@ func (d *DockerCompose) versionTest(testHomeDirectory, currentAirflowVersion, de
if err != nil {
return err
}
fmt.Printf("Pip Freeze comparison can be found at \n" + pipFreezeCompareFile)
fmt.Print("Pip Freeze comparison can be found at \n" + pipFreezeCompareFile)
return nil
}

Expand Down Expand Up @@ -1062,10 +1074,10 @@ func (d *DockerCompose) Parse(customImageName, deployImageName, buildSecretStrin
return err
}

func (d *DockerCompose) Bash(container string) error {
func (d *DockerCompose) Bash(component string) error {
// exec into schedueler by default
if container == "" {
container = SchedulerDockerContainerName
if component == "" {
component = SchedulerDockerContainerName
}

// query for container names
Expand All @@ -1081,7 +1093,7 @@ func (d *DockerCompose) Bash(container string) error {
// find container name of specified container
var containerName string
for i := range psInfo {
if strings.Contains(psInfo[i].Name, container) {
if strings.Contains(psInfo[i].Name, component) {
containerName = psInfo[i].Name
}
}
Expand Down Expand Up @@ -1277,7 +1289,7 @@ func (d *DockerCompose) checkAiflowVersion() (uint64, error) {
}

// createProject creates project with yaml config as context
var createDockerProject = func(projectName, airflowHome, envFile, buildImage, settingsFile, composeFile string, imageLabels map[string]string) (*types.Project, error) {
var createDockerProject = func(projectName, airflowHome, envFile, buildImage, settingsFile, composeFile string, imageLabels map[string]string) (*composetypes.Project, error) {
// Generate the docker-compose yaml
var yaml string
var err error
Expand All @@ -1293,9 +1305,9 @@ var createDockerProject = func(projectName, airflowHome, envFile, buildImage, se
}
}

var configs []types.ConfigFile
var configs []composetypes.ConfigFile

configs = append(configs, types.ConfigFile{
configs = append(configs, composetypes.ConfigFile{
Filename: "compose.yaml",
Content: []byte(yaml),
})
Expand All @@ -1305,7 +1317,7 @@ var createDockerProject = func(projectName, airflowHome, envFile, buildImage, se
return nil, errors.Wrapf(err, "Failed to open the compose file: %s", composeOverrideFilename)
}
if err == nil {
configs = append(configs, types.ConfigFile{
configs = append(configs, composetypes.ConfigFile{
Filename: "docker-compose.override.yml",
Content: composeBytes,
})
Expand All @@ -1314,23 +1326,37 @@ var createDockerProject = func(projectName, airflowHome, envFile, buildImage, se
var loadOptions []func(*loader.Options)

nameLoadOpt := func(opts *loader.Options) {
opts.Name = projectName
opts.Name = normalizeName(opts.Name)
opts.Interpolate = &composeInterp.Options{
opts.SetProjectName(normalizeName(projectName), true)
opts.Interpolate = &interpolation.Options{
LookupValue: os.LookupEnv,
}
}

loadOptions = append(loadOptions, nameLoadOpt)

project, err := loader.Load(types.ConfigDetails{
project, err := loader.LoadWithContext(context.Background(), composetypes.ConfigDetails{
ConfigFiles: configs,
WorkingDir: airflowHome,
}, loadOptions...)

// The latest versions of compose libs handle adding these labels at an outer layer,
// near the cobra entrypoint. Without these labels, compose will lose track of the containers its
// starting for a given project and downstream library calls will fail.
for name, s := range project.Services {
s.CustomLabels = map[string]string{
api.ProjectLabel: project.Name,
api.ServiceLabel: name,
api.VersionLabel: api.ComposeVersion,
api.WorkingDirLabel: project.WorkingDir,
api.ConfigFilesLabel: strings.Join(project.ComposeFiles, ","),
api.OneoffLabel: "False",
}
project.Services[name] = s
}
Comment on lines +1339 to +1353
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return project, err
}

func printStatus(settingsFile string, envConns map[string]astrocore.EnvironmentObjectConnection, project *types.Project, composeService api.Service, airflowDockerVersion uint64, noBrowser bool) error {
func printStatus(settingsFile string, envConns map[string]astrocore.EnvironmentObjectConnection, project *composetypes.Project, composeService api.Service, airflowDockerVersion uint64, noBrowser bool) error {
psInfo, err := composeService.Ps(context.Background(), project.Name, api.PsOptions{
All: true,
})
Expand Down
Loading