Skip to content

Commit

Permalink
fix: wrong vsphere config assignment (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatz authored Jan 18, 2024
1 parent 2066468 commit 6168ac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/konvoy-image/cmd/vsphere.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ func addVSphereArgs(fs *flag.FlagSet, vsphereArgs *app.VSphereArgs) {
)

fs.StringVar(
&vsphereArgs.ResourcePool,
&vsphereArgs.SSHPrivateKeyFile,
"ssh-privatekey-file",
"",
"Path to ssh private key which will be used to log into the base image template",
)

fs.StringVar(
&vsphereArgs.ResourcePool,
&vsphereArgs.SSHPublicKey,
"ssh-publickey",
"",
//nolint:lll // a long help line
Expand Down

0 comments on commit 6168ac6

Please sign in to comment.