Skip to content

Commit

Permalink
feat(test-infra): Bump to latest version (#30900)
Browse files Browse the repository at this point in the history
  • Loading branch information
chouetz authored Nov 14, 2024
1 parent 59345bb commit 65d7d04
Show file tree
Hide file tree
Showing 105 changed files with 5,686 additions and 1,553 deletions.
20 changes: 11 additions & 9 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ variables:
# and check the job creating the image to make sure you have the right SHA prefix
TEST_INFRA_DEFINITIONS_BUILDIMAGES_SUFFIX: ""
# Make sure to update test-infra-definitions version in go.mod as well
TEST_INFRA_DEFINITIONS_BUILDIMAGES: 3eac4b5bb0c4
TEST_INFRA_DEFINITIONS_BUILDIMAGES: 0a48ed729822
DATADOG_AGENT_BUILDERS: v28719426-b6a4fd9

DATADOG_AGENT_EMBEDDED_PATH: /opt/datadog-agent/embedded
Expand Down Expand Up @@ -250,10 +250,10 @@ variables:
# Condition mixins for simplification of rules
#
.if_main_branch: &if_main_branch
if: $CI_COMMIT_BRANCH == "main" || $CI_COMMIT_BRANCH == "6.53.x"
if: $CI_COMMIT_BRANCH == "6.53.x"

.if_not_main_branch: &if_not_main_branch
if: $CI_COMMIT_BRANCH != "main" && $CI_COMMIT_BRANCH != "6.53.x"
if: $CI_COMMIT_BRANCH != "6.53.x"

.if_release_branch: &if_release_branch
if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+\.x$/
Expand Down Expand Up @@ -301,10 +301,10 @@ variables:
# RUN_ALL_BUILDS has no effect on main/deploy pipelines: they always run all builds (as some jobs
# on main and deploy pipelines depend on jobs that are only run if we run all builds).
.if_run_all_builds: &if_run_all_builds
if: $CI_COMMIT_BRANCH == "main" || $DEPLOY_AGENT == "true" || $RUN_ALL_BUILDS == "true"
if: $CI_COMMIT_BRANCH == "6.53.x" || $DEPLOY_AGENT == "true" || $RUN_ALL_BUILDS == "true"

.if_not_run_all_builds: &if_not_run_all_builds
if: $CI_COMMIT_BRANCH != "main" && $DEPLOY_AGENT != "true" && $RUN_ALL_BUILDS != "true"
if: $CI_COMMIT_BRANCH != "6.53.x" && $DEPLOY_AGENT != "true" && $RUN_ALL_BUILDS != "true"

# Rule to trigger test setup, run, and cleanup.
# By default:
Expand All @@ -313,7 +313,7 @@ variables:
# RUN_E2E_TESTS can be set to on to force all the installer tests to be run on a branch pipeline.
# RUN_E2E_TESTS can be set to false to force installer tests to not run on main/deploy pipelines.
.if_installer_tests: &if_installer_tests
if: ($CI_COMMIT_BRANCH == "main" || $DEPLOY_AGENT == "true" || $RUN_E2E_TESTS == "on") && $RUN_E2E_TESTS != "off"
if: ($CI_COMMIT_BRANCH == "6.53.x" || $DEPLOY_AGENT == "true" || $RUN_E2E_TESTS == "on") && $RUN_E2E_TESTS != "off"

.if_testing_cleanup: &if_testing_cleanup
if: $TESTING_CLEANUP == "true"
Expand Down Expand Up @@ -359,7 +359,7 @@ variables:
if: $DEPLOY_AGENT == "true" && $BUCKET_BRANCH == "beta" && $CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+$/

.if_scheduled_main: &if_scheduled_main
if: $CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "main"
if: $CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "6.53.x"

# Rule to trigger jobs only when a branch matches the mergequeue pattern.
.if_mergequeue: &if_mergequeue
Expand Down Expand Up @@ -897,6 +897,7 @@ workflow:
- test/new-e2e/tests/agent-shared-components/**/*
compare_to: 6.53.x # TODO: use a variable, when this is supported https://gitlab.com/gitlab-org/gitlab/-/issues/369916
- when: manual
allow_failure: true

.on_subcommands_or_e2e_changes_or_manual:
- !reference [.on_e2e_main_release_or_rc]
Expand All @@ -908,6 +909,7 @@ workflow:
- test/new-e2e/tests/agent-subcommands/**/*
compare_to: 6.53.x # TODO: use a variable, when this is supported https://gitlab.com/gitlab-org/gitlab/-/issues/369916
- when: manual
allow_failure: true

.on_language-detection_or_e2e_changes_or_manual:
- !reference [.on_e2e_main_release_or_rc]
Expand Down Expand Up @@ -1091,14 +1093,14 @@ workflow:

.on_fakeintake_changes_on_main_or_manual:
- <<: *on_fakeintake_changes
if: $CI_COMMIT_BRANCH == "main"
if: $CI_COMMIT_BRANCH == "6.53.x"
- <<: *on_fakeintake_changes
when: manual
allow_failure: true

.on_fakeintake_changes_on_main:
- <<: *on_fakeintake_changes
if: $CI_COMMIT_BRANCH == "main"
if: $CI_COMMIT_BRANCH == "6.53.x"

.fast_on_dev_branch_only:
- <<: *if_main_branch
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/internal_image_deploy/internal_image_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docker_trigger_internal:
IMAGE_NAME: datadog-agent
RELEASE_TAG: ${CI_COMMIT_REF_SLUG}-jmx
BUILD_TAG: ${CI_COMMIT_REF_SLUG}-jmx
TMPL_SRC_IMAGE: v${CI_PIPELINE_ID}-${CI_COMMIT_SHORT_SHA}-7-jmx
TMPL_SRC_IMAGE: v${CI_PIPELINE_ID}-${CI_COMMIT_SHORT_SHA}-6-jmx
TMPL_SRC_REPO: ci/datadog-agent/agent
RELEASE_STAGING: "true"
script:
Expand Down
18 changes: 13 additions & 5 deletions test/new-e2e/examples/kind_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
"strings"
"testing"

corev1 "k8s.io/api/core/v1"

"github.com/DataDog/datadog-agent/test/new-e2e/pkg/e2e"
"github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments"
awskubernetes "github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments/aws/kubernetes"
Expand All @@ -20,6 +22,7 @@ import (
compkube "github.com/DataDog/test-infra-definitions/components/kubernetes"
"github.com/pulumi/pulumi-kubernetes/sdk/v4/go/kubernetes"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

Expand All @@ -29,19 +32,20 @@ type myKindSuite struct {

func TestMyKindSuite(t *testing.T) {
e2e.Run(t, &myKindSuite{}, e2e.WithProvisioner(
awskubernetes.Provisioner(
awskubernetes.KindProvisioner(
awskubernetes.WithoutFakeIntake(),
awskubernetes.WithWorkloadApp(func(e config.CommonEnvironment, kubeProvider *kubernetes.Provider) (*compkube.Workload, error) {
return nginx.K8sAppDefinition(e, kubeProvider, "nginx", nil)
awskubernetes.WithWorkloadApp(func(e config.Env, kubeProvider *kubernetes.Provider) (*compkube.Workload, error) {
return nginx.K8sAppDefinition(e, kubeProvider, "nginx", "", false, nil)
}),
awskubernetes.WithWorkloadApp(func(e config.CommonEnvironment, kubeProvider *kubernetes.Provider) (*compkube.Workload, error) {
awskubernetes.WithWorkloadApp(func(e config.Env, kubeProvider *kubernetes.Provider) (*compkube.Workload, error) {
return dogstatsd.K8sAppDefinition(e, kubeProvider, "dogstatsd", 8125, "/var/run/datadog/dsd.socket")
}),
)))
}

func (v *myKindSuite) TestClusterAgentInstalled() {
res, _ := v.Env().KubernetesCluster.Client().CoreV1().Pods("datadog").List(context.TODO(), v1.ListOptions{})
var clusterAgent corev1.Pod
containsClusterAgent := false
for _, pod := range res.Items {
if strings.Contains(pod.Name, "cluster-agent") {
Expand All @@ -50,5 +54,9 @@ func (v *myKindSuite) TestClusterAgentInstalled() {
}
}
assert.True(v.T(), containsClusterAgent, "Cluster Agent not found")
assert.Equal(v.T(), v.Env().Agent.InstallNameLinux, "dda")
stdout, stderr, err := v.Env().KubernetesCluster.KubernetesClient.
PodExec("datadog", clusterAgent.Name, "datadog-cluster-agent", []string{"ls"})
require.NoError(v.T(), err)
assert.Empty(v.T(), stderr)
assert.NotEmpty(v.T(), stdout)
}
2 changes: 1 addition & 1 deletion test/new-e2e/examples/vmenv_withami_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestVMSuiteEx2(t *testing.T) {
}

func (v *vmSuiteEx2) TestAmiMatch() {
ec2Metadata := client.NewEC2Metadata(v.Env().RemoteHost)
ec2Metadata := client.NewEC2Metadata(v.T(), v.Env().RemoteHost.Host, v.Env().RemoteHost.OSFamily)
amiID := ec2Metadata.Get("ami-id")
assert.Equal(v.T(), amiID, "ami-05fab674de2157a80")
}
130 changes: 72 additions & 58 deletions test/new-e2e/go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
module github.com/DataDog/datadog-agent/test/new-e2e

go 1.21.9
go 1.22.5

toolchain go1.22.8

// Do not upgrade Pulumi plugins to versions different from `test-infra-definitions`.
// The plugin versions NEED to be aligned.
// TODO: Implement hard check in CI

replace (
github.com/DataDog/datadog-agent/pkg/proto => ../../pkg/proto
github.com/DataDog/datadog-agent/pkg/util/optional => ../../pkg/util/optional
github.com/DataDog/datadog-agent/pkg/util/pointer => ../../pkg/util/pointer
github.com/DataDog/datadog-agent/pkg/util/scrubber => ../../pkg/util/scrubber
github.com/DataDog/datadog-agent/pkg/util/testutil => ../../pkg/util/testutil
github.com/DataDog/datadog-agent/pkg/version => ../../pkg/version
github.com/DataDog/datadog-agent/test/fakeintake => ../fakeintake
Expand All @@ -27,9 +31,9 @@ require (
// `TEST_INFRA_DEFINITIONS_BUILDIMAGES` matches the commit sha in the module version
// Example: github.com/DataDog/test-infra-definitions v0.0.0-YYYYMMDDHHmmSS-0123456789AB
// => TEST_INFRA_DEFINITIONS_BUILDIMAGES: 0123456789AB
github.com/DataDog/test-infra-definitions v0.0.0-20240322160927-3eac4b5bb0c4
github.com/aws/aws-sdk-go-v2 v1.25.2
github.com/aws/aws-sdk-go-v2/config v1.27.6
github.com/DataDog/test-infra-definitions v0.0.0-20241104134504-0a48ed729822
github.com/aws/aws-sdk-go-v2 v1.32.2
github.com/aws/aws-sdk-go-v2/config v1.27.40
github.com/aws/aws-sdk-go-v2/service/ec2 v1.138.1
github.com/aws/aws-sdk-go-v2/service/eks v1.35.1
github.com/aws/aws-sdk-go-v2/service/ssm v1.44.1
Expand All @@ -40,13 +44,13 @@ require (
github.com/google/uuid v1.6.0
github.com/kr/pretty v0.3.1
github.com/pkg/sftp v1.13.6
github.com/pulumi/pulumi/sdk/v3 v3.108.1
github.com/samber/lo v1.39.0
github.com/pulumi/pulumi/sdk/v3 v3.137.0
github.com/samber/lo v1.47.0
github.com/sethvargo/go-retry v0.2.4
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.21.0
golang.org/x/sys v0.18.0
golang.org/x/term v0.18.0
golang.org/x/crypto v0.25.0
golang.org/x/sys v0.22.0
golang.org/x/term v0.22.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/zorkian/go-datadog-api.v2 v2.30.0
k8s.io/api v0.28.4
Expand All @@ -57,7 +61,7 @@ require (
)

require (
dario.cat/mergo v1.0.0 // indirect
dario.cat/mergo v1.0.1 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/DataDog/datadog-agent/pkg/proto v0.53.0
github.com/DataDog/mmh3 v0.0.0-20200805151601-30884ca2197a // indirect
Expand All @@ -71,26 +75,26 @@ require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/alessio/shellescape v1.4.2 // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.1 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.6 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.15.2 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.2 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.2 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.2 // indirect
github.com/aws/aws-sdk-go-v2/service/ecs v1.41.1
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.4 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.4 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.2 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.51.3
github.com/aws/aws-sdk-go-v2/service/sso v1.20.1 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.1 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.28.3 // indirect
github.com/aws/smithy-go v1.20.1 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.6 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.38 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.14 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.19 // indirect
github.com/aws/aws-sdk-go-v2/service/ecs v1.47.4
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.0 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.0 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.0 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.65.0
github.com/aws/aws-sdk-go-v2/service/sso v1.23.4 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.27.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.31.4 // indirect
github.com/aws/smithy-go v1.22.0 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/chai2010/gettext-go v1.0.2 // indirect
github.com/charmbracelet/bubbles v0.18.0 // indirect
github.com/charmbracelet/bubbletea v0.25.0 // indirect
Expand All @@ -113,14 +117,14 @@ require (
github.com/go-errors/errors v1.4.2 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.5.0 // indirect
github.com/go-git/go-git/v5 v5.11.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-git/go-git/v5 v5.12.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/glog v1.2.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/btree v1.0.1 // indirect
Expand All @@ -132,7 +136,7 @@ require (
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/hcl/v2 v2.20.0 // indirect
github.com/hashicorp/hcl/v2 v2.20.1 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
Expand Down Expand Up @@ -175,50 +179,49 @@ require (
github.com/pkg/term v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
github.com/pulumi/esc v0.8.2 // indirect
github.com/pulumi/pulumi-command/sdk v0.9.2 // indirect
github.com/pulumi/pulumi-libvirt/sdk v0.4.4 // indirect
github.com/pulumi/esc v0.10.0 // indirect
github.com/pulumi/pulumi-command/sdk v1.0.1 // indirect
github.com/pulumi/pulumi-libvirt/sdk v0.4.7 // indirect
// pulumi-random v4.14.0 uses GO 1.21:
// https://github.com/pulumi/pulumi-random/blob/v4.14.0/sdk/go.mod#L3
// So, do not upgrade pulumi-random to v4.14.0 or above before migration to GO 1.21.
github.com/pulumi/pulumi-random/sdk/v4 v4.16.0 // indirect
github.com/pulumi/pulumi-random/sdk/v4 v4.16.6 // indirect
github.com/pulumi/pulumi-tls/sdk/v4 v4.11.1 // indirect
github.com/pulumiverse/pulumi-time/sdk v0.0.0-20231010123146-089d7304da13 // indirect
github.com/pulumiverse/pulumi-time/sdk v0.1.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/skeema/knownhosts v1.2.1 // indirect
github.com/skeema/knownhosts v1.2.2 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
github.com/tinylib/msgp v1.1.8 // indirect
github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 // indirect
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
github.com/zclconf/go-cty v1.14.3 // indirect
github.com/zorkian/go-datadog-api v2.30.0+incompatible
github.com/zclconf/go-cty v1.14.4 // indirect
github.com/zorkian/go-datadog-api v2.30.0+incompatible // indirect
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/oauth2 v0.16.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/text v0.14.0
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.19.0 // indirect
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.16.0
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.22.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.34.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
Expand All @@ -237,13 +240,24 @@ require (
)

require (
github.com/pulumi/pulumi-aws/sdk/v6 v6.25.0
github.com/pulumi/pulumi-awsx/sdk/v2 v2.5.0
github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.9.0
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.58.2
github.com/pulumi/pulumi-aws/sdk/v6 v6.56.1
github.com/pulumi/pulumi-awsx/sdk/v2 v2.16.1
github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.17.1
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/optional v0.55.2 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/pulumi/pulumi-docker/sdk/v4 v4.5.1 // indirect
github.com/pulumi/pulumi-eks/sdk/v2 v2.2.1 // indirect
github.com/aws/aws-sdk-go-v2/service/ecr v1.36.2 // indirect
github.com/pulumi/pulumi-azure-native-sdk/authorization/v2 v2.67.0 // indirect
github.com/pulumi/pulumi-azure-native-sdk/compute/v2 v2.56.0 // indirect
github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2 v2.67.0 // indirect
github.com/pulumi/pulumi-azure-native-sdk/network/v2 v2.67.0 // indirect
github.com/pulumi/pulumi-azure-native-sdk/v2 v2.67.0 // indirect
github.com/pulumi/pulumi-docker/sdk/v4 v4.5.5 // indirect
github.com/pulumi/pulumi-eks/sdk/v2 v2.7.8 // indirect
github.com/pulumi/pulumi-gcp/sdk/v6 v6.67.1 // indirect
github.com/pulumi/pulumi-gcp/sdk/v7 v7.38.0 // indirect
)
Loading

0 comments on commit 65d7d04

Please sign in to comment.