Skip to content

Commit 2996576

Browse files
authored
refactor: update artifact builder ids (#353)
Changed builder IDs from 'mitchellh.vmware' and 'mitchellh.vmware-esx' to 'vmware.desktop' and 'vmware.esx' in documentation and code to reflect updated naming standards. Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
1 parent d6917ec commit 2996576

5 files changed

Lines changed: 10 additions & 12 deletions

File tree

.web-docs/components/builder/iso/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ for those who want to start by creating an image for use with VMware [desktop hy
88

99
| Hypervisor Type | Artifact BuilderId |
1010
|---------------------|------------------------|
11-
| Desktop Hypervisor | `mitchellh.vmware` |
12-
| Remote Hypervisor | `mitchellh.vmware-esx` |
11+
| Desktop Hypervisor | `vmware.desktop` |
12+
| Remote Hypervisor | `vmware.esx` |
1313

1414
## Basic Example
1515

.web-docs/components/builder/vmx/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ back into Packer to iterate on an image for use with VMware [desktop hypervisors
99

1010
| Hypervisor Type | Artifact BuilderId |
1111
|---------------------|------------------------|
12-
| Desktop Hypervisor | `mitchellh.vmware` |
13-
| Remote Hypervisor | `mitchellh.vmware-esx` |
12+
| Desktop Hypervisor | `vmware.desktop` |
13+
| Remote Hypervisor | `vmware.esx` |
1414

1515
## Basic Example
1616

builder/vmware/common/artifact.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ import (
1212
)
1313

1414
const (
15-
// BuilderId for the local artifacts
16-
BuilderId = "mitchellh.vmware"
17-
BuilderIdESX = "mitchellh.vmware-esx"
18-
15+
BuilderId = "vmware.desktop"
16+
BuilderIdESX = "vmware.esx"
1917
ArtifactConfFormat = "artifact.conf.format"
2018
ArtifactConfKeepRegistered = "artifact.conf.keep_registered"
2119
ArtifactConfSkipExport = "artifact.conf.skip_export"

docs/builders/iso.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ for those who want to start by creating an image for use with VMware [desktop hy
2121

2222
| Hypervisor Type | Artifact BuilderId |
2323
|---------------------|------------------------|
24-
| Desktop Hypervisor | `mitchellh.vmware` |
25-
| Remote Hypervisor | `mitchellh.vmware-esx` |
24+
| Desktop Hypervisor | `vmware.desktop` |
25+
| Remote Hypervisor | `vmware.esx` |
2626

2727
## Basic Example
2828

docs/builders/vmx.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ back into Packer to iterate on an image for use with VMware [desktop hypervisors
2323

2424
| Hypervisor Type | Artifact BuilderId |
2525
|---------------------|------------------------|
26-
| Desktop Hypervisor | `mitchellh.vmware` |
27-
| Remote Hypervisor | `mitchellh.vmware-esx` |
26+
| Desktop Hypervisor | `vmware.desktop` |
27+
| Remote Hypervisor | `vmware.esx` |
2828

2929
## Basic Example
3030

0 commit comments

Comments
 (0)