<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: VIJAY MANDA</title>
    <description>The latest articles on DEV Community by VIJAY MANDA (@vijaymanda06).</description>
    <link>https://dev.to/vijaymanda06</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F977578%2F532638e3-8a14-461d-9ee1-17096fa75c37.jpeg</url>
      <title>DEV Community: VIJAY MANDA</title>
      <link>https://dev.to/vijaymanda06</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vijaymanda06"/>
    <language>en</language>
    <item>
      <title>Understanding the CI/CD Pipeline.</title>
      <dc:creator>VIJAY MANDA</dc:creator>
      <pubDate>Fri, 28 Feb 2025 17:45:03 +0000</pubDate>
      <link>https://dev.to/vijaymanda06/understanding-the-cicd-pipeline-1dk7</link>
      <guid>https://dev.to/vijaymanda06/understanding-the-cicd-pipeline-1dk7</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/vijaymanda06" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F977578%2F532638e3-8a14-461d-9ee1-17096fa75c37.jpeg" alt="vijaymanda06"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/vijaymanda06/lets-talk-about-cicd-pipeline-46c3" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Lets talk about CI/CD Pipeline.&lt;/h2&gt;
      &lt;h3&gt;VIJAY MANDA ・ Feb 28&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#devops&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#cicd&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#azure&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#cloud&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>devops</category>
      <category>cicd</category>
      <category>azure</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Take Control of Your VMs: Automating Deployments with PowerCLI in vCenter server.</title>
      <dc:creator>VIJAY MANDA</dc:creator>
      <pubDate>Sat, 05 Oct 2024 10:19:17 +0000</pubDate>
      <link>https://dev.to/vijaymanda06/take-control-of-your-vms-automating-deployments-with-powercli-in-vcenter-server-2idp</link>
      <guid>https://dev.to/vijaymanda06/take-control-of-your-vms-automating-deployments-with-powercli-in-vcenter-server-2idp</guid>
      <description>&lt;p&gt;Tired of manually creating virtual machines in VMware? It's a tedious process, especially when you need to spin up multiple VMs. PowerCLI, the command-line tool designed for managing VMware vSphere, has your back! Let's dive into a script that automates VM creation, either from scratch or using pre-built templates.&lt;/p&gt;

&lt;p&gt;Breaking Down the Script&lt;br&gt;
This script is structured in a logical way to make it easy to use:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Connect to Your vCenter: First things first, the script will ask for your vCenter Server's IP address or hostname, your username, and password. This establishes the connection to your VMware environment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set Your VM Parameters: Next, you get to customize your VM deployment:&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;How many VMs? Tell the script how many you need.&lt;/li&gt;
&lt;li&gt;Where do they live? Specify the datastore, folder, and cluster for your VMs.&lt;/li&gt;
&lt;li&gt;What do they look like? Define a naming convention with a prefix.&lt;/li&gt;
&lt;li&gt;Speed is key? Choose if you want to create them asynchronously for faster deployment.&lt;/li&gt;
&lt;li&gt;Template or fresh start? Decide if you're using a template and provide its name.&lt;/li&gt;
&lt;li&gt;Ready to roll? Choose whether to power on the VMs automatically.&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt; New VM Specifics (Optional): 
If you're not using a template, you'll need to provide some extra details:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Processing power: Set the number of CPUs.&lt;/li&gt;
&lt;li&gt;Memory Muscle: Specify RAM size in MB.&lt;/li&gt;
&lt;li&gt;Storage Space: Determine the disk size in MB.&lt;/li&gt;
&lt;li&gt;Disk Type: Choose thin, thick, or eagerZeroedThick provisioning.&lt;/li&gt;
&lt;li&gt;Operating System: Select the guest OS for your VMs.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Requirements
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. ESXI HOST&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fct5zotbzgh7hcabcofxg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fct5zotbzgh7hcabcofxg.png" alt=" " width="800" height="329"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. vCenter Server&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftj99chkp8onq7dkyqc4l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftj99chkp8onq7dkyqc4l.png" alt=" " width="800" height="369"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;## Code&lt;/strong&gt;&lt;br&gt;
[]&lt;a href="https://github.com/vijaymanda06/Virtual-Machine-Deployment-Script" rel="noopener noreferrer"&gt;https://github.com/vijaymanda06/Virtual-Machine-Deployment-Script&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
