title:vRA8 Automatic Deployment Naming - Another Take
posted:2021-05-20
tags:["all", "vmware", "vra", "vro", "javascript"]


Technology keeps moving but this post has not.

What you're about to read hasn't been updated in more than a year. The information may be out of date. Let me know if you see anything that needs fixing.

A few days ago, I shared how I combined a Service Broker Custom Form with a vRO action to automatically generate a unique and descriptive deployment name based on user inputs. That approach works fine but while testing some other components I realized that calling that action each time a user makes a selection isn't necessarily ideal. After a bit of experimentation, I settled on what I believe to be a better solution.

Instead of setting the "Deployment Name" field to use an External Source (vRO), I'm going to configure it to use a Computed Value. This is a bit less flexible, but all the magic happens right there in the form without having to make an expensive vRO call. Computed Value option

After setting Value source to Computed value, I also set the Operation to Concatenate (since it is, after all, the only operation choice. I can then use the Add Value button to add some fields. Each can be either a Constant (like a separator) or linked to a Field on the request form. By combining those, I can basically reconstruct the same arrangement that I was previously generating with vRO: Fields and Constants!

So this will generate a name that looks something like [user]_[catalog_item]_[site]-[env][function]-[app], all without having to call vRO! That gets me pretty close to what I want... but there's always the chance that the generated name won't be truly unique. Being able to append a timestamp on to the end would be a big help here.

That does mean that I'll need to add another vRO call, but I can set this up so that it only gets triggered once, when the form loads, instead of refreshing each time the inputs change.

So I hop over to vRO and create a new action, which I call getTimestamp. It doesn't require any inputs, and returns a single string. Here's the code:

1// JavaScript: getTimestamp action
2// Inputs: None
3// Returns: result (String)
4 
5var date = new Date();
6var result = date.toISOString();
7return result

I then drag a Text Field called Timestamp onto the Service Broker Custom Form canvas, and set it to not be visible: Invisible timestamp

And I set it to pull its value from my new net.bowdre.utility/getTimestamp action: Calling the action

Now when the form loads, this field will store a timestamp with thousandths-of-a-second precision.

The last step is to return to the Deployment Name field and link in the new Timestamp field so that it will get tacked on to the end of the generated name. Linked!

The old way looked like this, where it had to churn a bit after each selection: The Churn

Here's the newer approach, which feels much snappier: Snappy!

Not bad! Now I can make the Deployment Name field hidden again and get back to work!


Celebrate this post: 

runtimeterror  


 jbowdre