Skip to content

Commit

Permalink
feat(k8s): allow cluster creation with cni=none (#2525)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mia-Cross authored Apr 11, 2024
1 parent 27d287f commit c0f0b94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require (
github.com/nats-io/jwt/v2 v2.5.5
github.com/nats-io/nats.go v1.34.1
github.com/robfig/cron/v3 v3.0.1
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240325161646-a49fad6abe89
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240405144000-4e97e7066cac
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.22.0
gopkg.in/dnaeon/go-vcr.v3 v3.2.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs=
github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240325161646-a49fad6abe89 h1:q9KYEP2h9ZbeI9k5y0n4SRYmzCQjccnlLfZ0IXVPIRs=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240325161646-a49fad6abe89/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240405144000-4e97e7066cac h1:eGkGyD5ICOgXbP6prT30gMnptSGdxvJo4vQNBD829J4=
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.25.0.20240405144000-4e97e7066cac/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=
github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
Expand Down
1 change: 1 addition & 0 deletions internal/services/k8s/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ func ResourceCluster() *schema.Resource {
k8s.CNIFlannel.String(),
k8s.CNIWeave.String(),
k8s.CNIKilo.String(),
k8s.CNINone.String(),
}, false),
},
"tags": {
Expand Down

0 comments on commit c0f0b94

Please sign in to comment.