Skip to content

Commit

Permalink
Add missing parameter for the subnet for the API endpoint. (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlamillan committed Apr 4, 2023
1 parent 3f3d20c commit 86cde23
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions oke/oke_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,10 @@ func (d *OKEDriver) GetDriverCreateOptions(ctx context.Context) (*types.DriverFl
Type: types.StringType,
Usage: "The name of an existing virtual network to be used for OKE cluster creation",
}
driverFlag.Options["control-plane-subnet-name"] = &types.Flag{
Type: types.StringType,
Usage: "The name of the existing subnet to use for the Kubernetes API endpoint",
}
driverFlag.Options["load-balancer-subnet-name-1"] = &types.Flag{
Type: types.StringType,
Usage: "The name of the first existing subnet to use for Kubernetes services / LB",
Expand Down

0 comments on commit 86cde23

Please sign in to comment.