Add feedback on success
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-12-23 12:50:22 +01:00
parent 5fa5530e0a
commit 46ff2a0f99
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ type: kubernetes
name: 'Golang Build'
environment:
BINARY_VERSION: v0.3.0
BINARY_VERSION: v0.3.1
clone:
disable: true

View File

@ -47,4 +47,6 @@ func main() {
if err := hypervisor.SetVirtualMachineProperties(ctx, fnd, opts.VirtualMachine, opts.Network); err != nil {
log.Fatalf("[ERROR] Could not apply vApp properties: %s", err)
}
log.Printf("[SUCCESS] Network protocol profile properties added to virtual machine '%s' and configured for network '%s'", opts.VirtualMachine, opts.Network)
}