Skip to content

Commit

Permalink
client.rb: fix alignment
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Linnane <[email protected]>
  • Loading branch information
p-linnane committed Feb 16, 2024
1 parent 784372d commit 56d765a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/orka_api_client/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ def vm_configuration(name)
# @param [Numeric] memory
# @return [Models::VMConfiguration] The lazily-loaded VM configuration.
def create_vm_configuration(name,
base_image:, snapshot_image:, cpu_cores:, vcpu_count:,
iso_image: nil, attached_disk: nil, vnc_console: nil,
system_serial: nil, io_boost: nil, net_boost: nil, gpu_passthrough: nil,
tag: nil, tag_required: nil, scheduler: nil, memory: nil)
base_image:, snapshot_image:, cpu_cores:, vcpu_count:,
iso_image: nil, attached_disk: nil, vnc_console: nil,
system_serial: nil, io_boost: nil, net_boost: nil, gpu_passthrough: nil,
tag: nil, tag_required: nil, scheduler: nil, memory: nil)
body = {
orka_vm_name: name,
orka_base_image: base_image.is_a?(Models::Image) ? base_image.name : base_image,
Expand Down

0 comments on commit 56d765a

Please sign in to comment.