So I’ve been using terraform for quite sometime now for building-tearing down my kubernetes cluster. One thing that is missing on the provisioned Virtual Machine are tags which I exclusively use for my backup-schedule retention (Veeam). Quick Introduction on Terraform: Terraform lets you “codify” the desired state of your infrastructure. This is awesome as it can be tracked/ checked-in on your favor
More than one way to skin a cat. The old adage which basically means there are multiple ways to achieve a goal. This is no different in IT and for creating Kubernetes clusters – there have been multiple ways in standing up a fully functioning cluster. Here are some of the I’ve tried and my experience of doing it: If you want an opinionated way of doing it, go PKS (https://docs.vmware.com/en/VMware-Enterpr
Ok. this took me awhile to out so wanted to share my experience in doing so. Objective: Update my on-premise gitlab to atleast 10.8 to allow me to remote mirror my projects to github so i can have remote copy of the things i’m working on. Update to the latest gitlab so i can have the latest goodies Move gitlab from Ubuntu to CentOS. I’m standardizing my linux distro use to CentOS Constraints: As per gitl
Long time no post. I’ve been playing around NSX-T and encounter a situation where uninstall won’t work from the NSX-Manager so I had to uninstall the kernel modules manually. Unfortunately, it’s not a straight-forward ordeal since there are a multiple VIBs included in the software bundle and dependencies are intertwined. Anyway, managed to deal with it and here’s the sequence of how i did it.
For the past 3 weeks I’ve been doing testing in the DevOps/ Open Source space just to break the monotony of working with anything V*. Specifically, I’ve been doing alot of: CoreOS, RancherOS, K8S, Docker/ Container in my spare time and I wanted to correlate the jargons in the area with that of VMware to help newcomers (like me) easily grasp the concepts. So here’s a quick list of what I’ve lea
Long time no post. Anyway, I’ve been wanting to update my homelab to 6.5U1 and wanted to use a REPO for a quick way to do it since the lab consists of 4 components (2xVC; 2xPSCs). I dont to trouble myself in using LINUX so i just went ahead in using MS IIS. Doing this is straight forward – Enable IIS – Create Virtual DIrectory – Dump the UPDATE ZIP into the Virtual Directory via the local path
Over the weekend, I’ve been trying to call Powershell scripts using vRealize Orchestrator. Quick google yielded the following: http://blogs.vmware.com/orchestrator/2011/12/vco-powershell-plug-in.html I’ve followed the blog and was able to successfully call the script WITH one exception: every time i started calling resource outside of the WINRM host from the ps script – it kept on failing. One exam
Didn’t realize there was an “easy” go-to button in vRealize Orchetrator to auto-configure the following: Import license Import certificated Configure SSO Configure vCenter Server Plugin Just login to vRealize Orchestrator Configuration and setup the component manager lookup – VMware vRealize Orchestrator Configuration -> General -> vSphere Configuration
Happy New Year! I’ve had experiences in the field where Users are seeing missing tabs when editing Blue prints, particularly Storage and Properties, is experienced when using Internet Explorer. Overall, weird experiences when using IE. Quick solution to this is: In IE, 1. Select Tools > Compatibility View settings. 2. Deselect Display intranet sites in Compatibility View. That’s it! Explanation: Appare
Doing REST API calls via Powershell is straight forward using the Invoke-RestMethod cmdlet. Using the examples from inkysea’s blogpost, I’ll be showing how to do this calls to vRA using Powershell. To start off, we need to define the header and the body payload After which, we define the URI/ vRA URL to pass the REST payload We then invoke the Invoke-RestMethod cmdlet ConvertTo-Json was done in $bo