Skip to content

Commit

Permalink
build(deps): Bump k8s.io/cloud-provider-aws from 1.30.1 to 1.30.2 in …
Browse files Browse the repository at this point in the history
…/credential-providers (#332)

* build(deps): Bump k8s.io/cloud-provider-aws in /credential-providers

Bumps [k8s.io/cloud-provider-aws](https://github.com/kubernetes/cloud-provider-aws) from 1.30.1 to 1.30.2.
- [Release notes](https://github.com/kubernetes/cloud-provider-aws/releases)
- [Changelog](https://github.com/kubernetes/cloud-provider-aws/blob/master/docs/CHANGELOG.md)
- [Commits](kubernetes/cloud-provider-aws@v1.30.1...v1.30.2)

---
updated-dependencies:
- dependency-name: k8s.io/cloud-provider-aws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* build: go 1.22.4

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jimmi Dyson <[email protected]>
  • Loading branch information
dependabot[bot] and jimmidyson authored Jul 1, 2024
1 parent f0e9b23 commit 2f234f5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions credential-providers/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

module github.com/mesosphere/dynamic-credential-provider/credential-providers

go 1.22.2
go 1.22.4

require (
k8s.io/cloud-provider-aws v1.30.1
k8s.io/cloud-provider-aws v1.30.2
sigs.k8s.io/cloud-provider-azure v1.30.3
)

Expand Down
4 changes: 2 additions & 2 deletions credential-providers/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ k8s.io/apimachinery v0.30.1 h1:ZQStsEfo4n65yAdlGTfP/uSHMQSoYzU/oeEbkmF7P2U=
k8s.io/apimachinery v0.30.1/go.mod h1:iexa2somDaxdnj7bha06bhb43Zpa6eWH8N8dbqVjTUc=
k8s.io/client-go v0.30.1 h1:uC/Ir6A3R46wdkgCV3vbLyNOYyCJ8oZnjtJGKfytl/Q=
k8s.io/client-go v0.30.1/go.mod h1:wrAqLNs2trwiCH/wxxmT/x3hKVH9PuV0GGW0oDoHVqc=
k8s.io/cloud-provider-aws v1.30.1 h1:+triVR0qQ3VUqshmMtsYCygG092lo14S8m+oiJ6Y524=
k8s.io/cloud-provider-aws v1.30.1/go.mod h1:Y3KZO58KrnoJ3rnCQ3VIq4e+aMAwKq+FQW/D577J/s8=
k8s.io/cloud-provider-aws v1.30.2 h1:paPfceLKSzTl7uca/cknOgz75ozcXJb1S3PHnq9AI4k=
k8s.io/cloud-provider-aws v1.30.2/go.mod h1:ajm6W7hhUVL2TieJchwgqHxxGaxHYI4GRnj80krh6hc=
k8s.io/component-base v0.30.1 h1:bvAtlPh1UrdaZL20D9+sWxsJljMi0QZ3Lmw+kmZAaxQ=
k8s.io/component-base v0.30.1/go.mod h1:e/X9kDiOebwlI41AvBHuWdqFriSRrX50CdwA9TFaHLI=
k8s.io/klog/v2 v2.120.1 h1:QXU6cPEOIslTGvZaXvFWiP9VKyeet3sawzTOvdXb4Vw=
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module github.com/mesosphere/dynamic-credential-provider

go 1.22.0

toolchain go1.22.3
toolchain go1.22.4

require (
github.com/distribution/reference v0.6.0
Expand Down
5 changes: 3 additions & 2 deletions test/e2e/docker/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/image"
"github.com/docker/docker/api/types/network"
"github.com/docker/docker/api/types/registry"
"github.com/docker/docker/client"
)
Expand Down Expand Up @@ -63,13 +64,13 @@ func RunContainerInBackground(
_, err = dClient.NetworkInspect(
ctx,
hostCfg.NetworkMode.NetworkName(),
types.NetworkInspectOptions{},
network.InspectOptions{},
)
if client.IsErrNotFound(err) {
_, err = dClient.NetworkCreate(
ctx,
hostCfg.NetworkMode.NetworkName(),
types.NetworkCreate{
network.CreateOptions{
Driver: "bridge",
Options: map[string]string{
"com.docker.network.bridge.enable_ip_masquerade": "true",
Expand Down

0 comments on commit 2f234f5

Please sign in to comment.