Skip to content

Commit

Permalink
fixup! Cherry-pick useExistingSubnet feature (10-01-2024) (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelEischer authored and Duciwuci committed Jun 24, 2024
1 parent 8527306 commit 93faeda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/controller/infrastructure/configvalidator.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (c *configValidator) validateFloatingPoolName(ctx context.Context, networki
return allErrs
}

func (c *configValidator) validateNetwork(ctx context.Context, networkingClient openstackclient.Networking, networkID string, fldPath *field.Path) field.ErrorList {
func (c *configValidator) validateNetwork(_ context.Context, networkingClient openstackclient.Networking, networkID string, fldPath *field.Path) field.ErrorList {
allErrs := field.ErrorList{}

networks, err := networkingClient.ListNetwork(networks.ListOpts{ID: networkID})
Expand All @@ -129,7 +129,7 @@ func (c *configValidator) validateNetwork(ctx context.Context, networkingClient
return allErrs
}

func (c *configValidator) validateSubnet(ctx context.Context, networkingClient openstackclient.Networking, subnetID, networkID string, fldPath *field.Path) field.ErrorList {
func (c *configValidator) validateSubnet(_ context.Context, networkingClient openstackclient.Networking, subnetID, networkID string, fldPath *field.Path) field.ErrorList {
allErrs := field.ErrorList{}

// validate subnet existence
Expand All @@ -151,7 +151,7 @@ func (c *configValidator) validateSubnet(ctx context.Context, networkingClient o
return allErrs
}

func (c *configValidator) validateRouter(ctx context.Context, networkingClient openstackclient.Networking, routerID string, fldPath *field.Path) field.ErrorList {
func (c *configValidator) validateRouter(_ context.Context, networkingClient openstackclient.Networking, routerID string, fldPath *field.Path) field.ErrorList {
allErrs := field.ErrorList{}

routers, err := networkingClient.ListRouters(routers.ListOpts{ID: routerID})
Expand Down

0 comments on commit 93faeda

Please sign in to comment.