generated from hashicorp/packer-plugin-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates the tests and examples from the the original JetBrains content to generalized example content. Signed-off-by: Ryan Johnson <[email protected]>
- Loading branch information
1 parent
623ba0a
commit ab6e747
Showing
17 changed files
with
133 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,20 +10,25 @@ import ( | |
"os" | ||
"time" | ||
|
||
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/common/utils" | ||
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver" | ||
) | ||
|
||
const ( | ||
testDefaultUsername = "[email protected]" | ||
testDefaultPassword = "VMw@re1!" | ||
testDefaultApiEndpoint = "vcenter.example.com" | ||
) | ||
|
||
func NewVMName() string { | ||
rand.Seed(time.Now().UnixNano()) | ||
return fmt.Sprintf("test-%v", rand.Intn(1000)) | ||
r := rand.New(rand.NewSource(time.Now().UnixNano())) | ||
return fmt.Sprintf("test-%v", r.Intn(1000)) | ||
} | ||
|
||
func RenderConfig(builderType string, config map[string]interface{}) string { | ||
t := map[string][]map[string]interface{}{ | ||
"builders": { | ||
map[string]interface{}{ | ||
"type": builderType, | ||
}, | ||
{"type": builderType}, | ||
}, | ||
} | ||
for k, v := range config { | ||
|
@@ -35,23 +40,29 @@ func RenderConfig(builderType string, config map[string]interface{}) string { | |
} | ||
|
||
func TestConn() (driver.Driver, error) { | ||
username := os.Getenv("VSPHERE_USERNAME") | ||
username := os.Getenv(utils.EnvVsphereUsername) | ||
if username == "" { | ||
username = "root" | ||
username = testDefaultUsername | ||
} | ||
password := os.Getenv("VSPHERE_PASSWORD") | ||
|
||
password := os.Getenv(utils.EnvVspherePassword) | ||
if password == "" { | ||
password = "jetbrains" | ||
password = testDefaultPassword | ||
} | ||
|
||
vcenter := os.Getenv(utils.EnvVcenterServer) | ||
if vcenter == "" { | ||
vcenter = testDefaultApiEndpoint | ||
} | ||
|
||
d, err := driver.NewDriver(&driver.ConnectConfig{ | ||
VCenterServer: "vcenter.example.com", | ||
VCenterServer: vcenter, | ||
Username: username, | ||
Password: password, | ||
InsecureConnection: true, | ||
}) | ||
if err != nil { | ||
return nil, fmt.Errorf("error connecting to vCenter Server instance: %v", err) | ||
return nil, fmt.Errorf("error connecting to endpoint: %v", err) | ||
} | ||
return d, nil | ||
} | ||
|
@@ -61,7 +72,6 @@ func GetVM(d driver.Driver, name string) (driver.VirtualMachine, error) { | |
if err != nil { | ||
return nil, fmt.Errorf("error finding virtual machine: %v", err) | ||
} | ||
|
||
return vm, nil | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package utils | ||
|
||
import ( | ||
"os" | ||
) | ||
|
||
const ( | ||
DefaultApiEndpoint = "vcenter.example.com" | ||
DefaultUsername = "[email protected]" | ||
DefaultPassword = "VMw@re1!" | ||
DefaultHost = "esxi-01.example.com" | ||
|
||
EnvVcenterServer = "VSPHERE_VCENTER_SERVER" | ||
EnvVsphereUsername = "VSPHERE_USERNAME" | ||
EnvVspherePassword = "VSPHERE_PASSWORD" | ||
EnvVsphereHost = "VSPHERE_HOST" | ||
) | ||
|
||
const () | ||
|
||
func GetenvOrDefault(key, defaultValue string) string { | ||
if value := os.Getenv(key); value != "" { | ||
return value | ||
} | ||
return defaultValue | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
"type": "vsphere-clone", | ||
|
||
"vcenter_server": "vcenter.example.com", | ||
"username": "root", | ||
"password": "jetbrains", | ||
"username": "[email protected]", | ||
"password": "VMw@re1!", | ||
"insecure_connection": "true", | ||
|
||
"template": "alpine", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ source "vsphere-clone" "example_clone" { | |
communicator = "none" | ||
host = "esxi-01.example.com" | ||
insecure_connection = "true" | ||
password = "jetbrains" | ||
password = "VMw@re1!" | ||
template = "alpine" | ||
username = "root" | ||
username = "[email protected]" | ||
vcenter_server = "vcenter.example.com" | ||
vm_name = "alpine-clone-${local.timestamp}" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,16 +39,16 @@ | |
"network_card": "vmxnet3" | ||
} | ||
], | ||
"password": "jetbrains", | ||
"ssh_password": "jetbrains", | ||
"ssh_username": "root", | ||
"password": "VMw@re1!", | ||
"ssh_password": "VMw@re1!", | ||
"ssh_username": "packer", | ||
"storage": [ | ||
{ | ||
"disk_size": 1024, | ||
"disk_thin_provisioned": true | ||
} | ||
], | ||
"username": "root", | ||
"username": "[email protected]", | ||
"vcenter_server": "vcenter.example.com", | ||
"vm_name": "alpine-{{timestamp}}" | ||
} | ||
|
Oops, something went wrong.