VMware Cloud Community
Chester007
Contributor
Contributor

Creating a custom ISO for a Vsphere 4.1 to 5.0 migration.

Hi all,

I'm trying to create a custom ISO in PowerCLI to upgrade my 4.1 ESXi enviornment to 5.0.  The reason being that I run a dell equallogic PS4000e as backend storage and have 2 Dell modules loaded, the host connection manager and the routed psp.  When I tried to upgrade with the plain jane Version 5 cd it warned me that these VIB's were not on the boot media disk and that if I continued it may not boot.  So I'm trying to create a custom ISO using powerCLI.

I can mount the depots just fine, create a custom profile and add the dell VIB's to the custom profile - no problem.

The two in question are:

dell-eql-host-connection-mgr & dell-eql-routed-psp.

They add just fine.  The problem arose when I tried to export the profile to an ISO.

I get an error message saying that it "Could not find a trusted signer"

What do I need to do to get around this error??

Yup, I'm a noob at this...lol

Thanks in advance!

Rob D.

Reply
0 Kudos
5 Replies
admin
Immortal
Immortal

The profile you are using probably has acceptancelevel as PartnerSupported or VMwareCertified, so it is checking the signature of your VIB.

Try to change the acceptance level of the image profile to CommunitySupported:

$profile.AcceptanceLevel = "CommunitySupported"

then builld ISO.

Reply
0 Kudos
iinfi
Contributor
Contributor

hi dingyongvm

i am facing a similar issue trying to customize the installation

i tried to using the CommunitySupported acceptance level, but still i face the same error (Could not find trusted signer) trying to use the new-deployrule command

is there any workaround to this?

thanks.

Reply
0 Kudos
admin
Immortal
Immortal

It looks like you have vibs which are signed by invalid certificate.

You can bypass the signature check by doing:

$DeployNoSignatureCheck = $true

Thanks,

Reply
0 Kudos
iinfi
Contributor
Contributor

hi thanks for your post...

i had posted the same here ..http://communities.vmware.com/message/1873790#1873790

and got help from vmware dev forums ... forgot to ack here...thanks again

Reply
0 Kudos
satishma
Contributor
Contributor

Hi,

I am facing the same problem "Could not find a trusted signer." when I tried to run new-deploy command for autodeploy. As I am using out-of-box NIC VIB file for my autdeploy server.

I am facing signature error for my vib file which don't have the signature, I tried passing the following on PowerCLI but still I am facing the problem.

PS> $DeployNoSignatureCheck=$true

Error message:

New-DeployRule : 7/27/2012 9:23:58 AM    New-DeployRule        Could not find a trusted signer.
At line:1 char:15

Thanks in advance for your help,

Satish

Reply
0 Kudos