Article cover image

Patching vRSLCM (vRealize Lifecycle Manager) to 8.4.1.1 Patch 1

In this guide i will go over the steps of getting an existing 8.x vRSLCM appliance upgraded to the latest 8.4.1 Patch 1 release. The release notes can be found here The first step is to lo in to vRealize Suite Lifecycle Manager under the Lifecycle Operations section Go to settings -> Binary Mapping Click on Patch Binaries up top and click on Check Patches Online We can see that the check found a new patch ...

August 4, 2021 · 1 min · Cosmin
Article cover image

Upgrading vRA (vRealize Automation) to 8.4

In this post i will go over upgrading my 8.x vRA appliance to 8.4. As a pre requirement we do need to have vRSLCM (vRealize Lifecycle Manager) upgraded to 8.4. Instructions can be found here To get started we can go to vRealize Lifecycle Manager -> Lifecycle Operations -> Settings -> Binary Mapping. (If you havent added your My VMware credentials you will need to do that first by going to vRealize Lifecycle Manager -> Lifecycle Operations -> Settings -> My VMware) ...

May 19, 2021 · 2 min · Cosmin
Article cover image

vRA cloud API getting started

I wanted to keep track of what needs to be done prior to actually being able to query API on vRA cloud. Ive been having a hard time finding the documentation i needed in the past First step is to get an API token for the specific username. We can do this by going to My account under User Settings in vRA Cloud Go to API Tokens and click on Generate a new api token ...

February 26, 2021 · 1 min · Cosmin
Article cover image

vIDM 3.3.4 online upgrade

I wanted to go through the upgrade of vIDM 3.3.4 outside of lifecycle manager. I wanted to do it using the online upgrade via the console. Official documentation can be found here. First step is to log on to the console via the root credentials and upgrade the upgrade manager to 3.3.4 /usr/local/horizon/update/updatemgr.hzn updateinstaller Set the upgrade version that you are upgrading from in my case was 3.3.2 so i ran ...

February 17, 2021 · 1 min · Cosmin
Article cover image

Upgrading vRA (vRealize Automation) to 8.3

In this post i will go over upgrading my 8.2 vRA appliance to 8.3. As a pre requirement we do need to have vRSLCM (vRealize Lifecycle Manager) upgraded to 8.3. Instructions can be found here To get started we can go to vRealize Lifecycle Manager -> Lifecycle Operations -> Settings -> Binary Mapping. (If you havent added your My VMware credentials you will need to do that first by going to vRealize Lifecycle Manager -> Lifecycle Operations -> Settings -> My VMware) ...

February 4, 2021 · 2 min · Cosmin
Article cover image

Upgrading vRSLCM (vRealize Lifecycle Manager) to 8.3

In this guide i will go over the steps of getting an existing 8.x vRSLCM appliance upgraded to the latest 8.3 release The first step is to lo in to vRealize Suite Lifecycle Manager under the Lifecycle Operations section Go to settings -> System Upgrade Click on Check for Upgrade We can see that the check found a new version available for 8.3 Click on Upgrade ...

February 4, 2021 · 1 min · Cosmin
Article cover image

Deploying SaltStack Config via Lifecycle Manager in a VRA environment

Assuming that you already downloaded the SaltStack Config binaries in this guide we will go over the deployment of SaltStack Config in an existing VRA 8.3 environment via Lifecycle Manager 8.3 Log on to Lifecycle Manager -> Go to environments, on the vRA environment click on the Menu and go to Add Product Select the checkbox next to vRealize Automation SaltStack Config and click Next Review the EULA, click on the agree box on the bottom of the page and click on next ...

February 2, 2021 · 2 min · Cosmin
Article cover image

Deploying vRA 8.3 using the Easy Installer

In this guide i will go over the deployment of vRA 8.3 using the Easy Installer. The reason i like the Easy Installer is because it deploys everything that i need. vIDM, Lifecycle Manager as well as vRA. To get started we need to download the installer from here. Once downloaded mount the iso as a drive using your favorite tool or extract it as a archive using something like 7-zip Once mounted go to the CDROM in the mac directory if on mac or win32 if you are on windows. In here run the installer file ...

January 28, 2021 · 4 min · Cosmin
Article cover image

Creating a customized Snapshot as a Day 2 Action in vRA 8.2

I wanted to give my users the capability to create a snapshot but limit them to only 1 snapshot and have a predefined description from the snapshot so i can know that it was taken from vRA. For the purpose of this i will be using a customer workflow in Orchestrator and Resource Actions and in Cloud Assembly. Since Orchestrator comes with a number of pre defined workflows in always like to jump start by find something thats similar with what im trying to do. For the purpose of this we will be using the Create Snapshot Workflow. ...

January 1, 2021 · 4 min · Cosmin

Extracting SSL Thumbprint

I recently ran in to an issue where i had to re-register my NSX server with vIDM. The ask was to extract the Thumbprint from vIDM. The command i ran to extract it was: echo -n | openssl s_client -connect hostname:443 2>/dev/null | openssl x509 -noout -fingerprint -sha256 This can be used across multiple products where the Thumbprint needs to be extracted

October 10, 2020 · 1 min · Cosmin