{"id":1660,"date":"2018-10-15T17:47:01","date_gmt":"2018-10-15T17:47:01","guid":{"rendered":"https:\/\/live-infoblox-blog.pantheonsite.io\/?p=1660"},"modified":"2020-05-06T10:27:03","modified_gmt":"2020-05-06T17:27:03","slug":"automatically-scale-the-infoblox-grid-in-your-vmware-environment","status":"publish","type":"post","link":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/","title":{"rendered":"Automatically scale the Infoblox Grid in your VMWare environment"},"content":{"rendered":"<p>Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load. With the growing dynamism in user environments and need for automation, autoscaling helps in adapting to the environment easily.<\/p>\n<p>The script\u00a0<a href=\"https:\/\/github.com\/infobloxopen\/vmware-autoscale\/tree\/master\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">here<\/a>\u00a0enables you to automatically scale up or down the Infoblox grid,hosted on a VMWare environment, based on DNS queries per second.<\/p>\n<h2 id=\"toc-hId--1333217897\">What does the script do?<\/h2>\n<p>The powershell script polls the DNS queries being served per second, using SNMP. Based on thresholds that are set by the user, it scales up or down by adding or deleting one grid member at a time.<\/p>\n<h2 id=\"toc-hId--445714216\">What modules does the script use?<\/h2>\n<p>The script is written in Powershell. It uses the SNMP module in order to fetch the DNS QPS information. Please note that SNMP should have been pre-configured on the Infoblox grid. It uses VMWare PowerCLI for VM related operations, and the ovftool to deploy a grid member with all the initial configuration. It also uses Infoblox REST APIs to do all the necessary configurations in the Grid.<\/p>\n<h2 id=\"toc-hId-441789465\">Before you get started<\/h2>\n<p>Ensure you have the following components in your environment:<\/p>\n<ul>\n<li>Windows Powershell<\/li>\n<li>Powershell SNMP module<\/li>\n<li>VMWare PowerCLI module for Powershell<\/li>\n<li>ovftool (4.3.0)<\/li>\n<li>Connectivity to both, the vCenter Server and Infoblox Grid<\/li>\n<\/ul>\n<p>Ensure the following configurations are enabled on the Infoblox grid<\/p>\n<ul>\n<li>SNMP configuration<\/li>\n<li>A reserved range defined within a subnet, from which IP addresses can be automatically assigned to the scaled-up members<\/li>\n<\/ul>\n<p>Ensure that you modify the variables above which the comment &#8220;NEEDS TO BE MODIFIED WITH VALUES SPECIFIC TO YOUR ENVIRONMENT&#8221; is added, such as:<\/p>\n<ul>\n<li>$vmfolder: Location in the vCenter Server where the new Virtual Machine needs to be created<\/li>\n<li>$datastore: The datastore the VM will reside on. You can run Get-Datastore command to get a list of all the datastores in your environment<\/li>\n<li>$dportgroup: The Distributed port group that the VM will be connected to. You can run Get-VDPortgroup to get a list of all the distirbuted port groups in your environment<\/li>\n<li>$range: The range within which the next available IP address can be found to assign to a new member<\/li>\n<li>$memberip: The gateway and subnet mask need to be changed<\/li>\n<li>$gridjoindetails: This is the details of the existing grid that the new member needs to join<\/li>\n<li>$nsname: The nameserver group that the new member will be added to.<\/li>\n<\/ul>\n<h2 id=\"toc-hId-1329293146\">How does the autoscaling work?<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1664\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/automatically-scale-infoblox-grid-flowchart.png\" alt=\"Infoblox Grid Scaling Flowchart\" width=\"600\" height=\"430\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-flowchart.png 600w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-flowchart-300x215.png 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<h3 id=\"toc-hId-409342364\">Scale up<\/h3>\n<p>Consider an existing grid hosted on a vCenter Server that is responding to DNS queries. This script constantly polls for the DNS QPS and compares it with the threshold that has been set. Once the threshold is reached, a new member is created and attached to the grid.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1668\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-up.png\" alt=\"Infoblox Grid scaling up\" width=\"599\" height=\"224\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-up.png 599w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-up-300x112.png 300w\" sizes=\"auto, (max-width: 599px) 100vw, 599px\" \/><\/p>\n<p>It first creates and initializes a member on vCenter, then adds the member to the grid, adds a fixed address entry on the grid, enables the DNS and DHCP services, and adds the newly joined member to the nameserver group so it can start answering to the DNS queries.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1666\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/automatically-scale-infoblox-grid-scale-up-complete.png\" alt=\"Infoblox Grid scaling up completed\" width=\"599\" height=\"153\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scale-up-complete.png 599w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scale-up-complete-300x77.png 300w\" sizes=\"auto, (max-width: 599px) 100vw, 599px\" \/><\/p>\n<h3 id=\"toc-hId-1296846045\">Scale down<\/h3>\n<p>It continues to poll the DNS QPS and when the fall below a specified threshold, it deletes the newly spun up member.<\/p>\n<p>First, it removes the member from the nameserver group, removes the member from the grid, deletes the fixed address entry, and finally shuts down and deletes the Virtual Machine.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1667\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-down.png\" alt=\"Infoblox Grid scaling down\" width=\"600\" height=\"335\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-down.png 600w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-scaling-down-300x168.png 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>If there are no scaled-up members available for deleting, it continues to poll the DNS QPS. It does not alter the Grid environment you began with.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1665\" src=\"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/automatically-scale-infoblox-grid-no-eligible-members.png\" alt=\"Infoblox Grid scaling - no eligible members\" width=\"582\" height=\"61\" srcset=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-no-eligible-members.png 582w, https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/automatically-scale-infoblox-grid-no-eligible-members-300x31.png 300w\" sizes=\"auto, (max-width: 582px) 100vw, 582px\" \/><\/p>\n<h2 id=\"toc-hId--303163107\">Demo and Deployment Guide<\/h2>\n<p>For a quick demo, you can refer to this video.<\/p>\n<div class=\"video-embed-center video-embed\"><iframe loading=\"lazy\" class=\"embedly-embed bf_frame_init\" title=\"Video\" src=\"https:\/\/cdn.embedly.com\/widgets\/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fl548sHu0PEY%3Ffeature%3Doembed&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dl548sHu0PEY&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fl548sHu0PEY%2Fhqdefault.jpg&amp;key=fad07bfa4bd747d3bdea27e17b533c0e&amp;type=text%2Fhtml&amp;schema=youtube\" width=\"400\" height=\"225\" frameborder=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><\/iframe><\/div>\n<p>For deploying it in your environment, you can refer\u00a0<a href=\"https:\/\/www.infoblox.com\/resources\/deployment-guides\/autoscaling-of-nios-on-vmware-using-powershell?utm_source=blox-community&amp;utm_campaign=community-q2&amp;utm_medium=blox-community\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">this<\/a>\u00a0document.<\/p>\n<h2 id=\"toc-hId-584340574\">Takeaway<\/h2>\n<p>This script scales your environment up or down automatically without any need for human intervention.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load. With the growing dynamism in user environments and need for automation, autoscaling helps in adapting to the environment easily. The script\u00a0here\u00a0enables you to automatically scale up or down the Infoblox grid,hosted on a VMWare environment, based [&hellip;]<\/p>\n","protected":false},"author":230,"featured_media":1669,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[3],"tags":[42,28,16,67,27,60],"class_list":{"0":"post-1660","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-community","8":"tag-cloud-automation","9":"tag-ddi","10":"tag-infoblox","11":"tag-tips-tricks","12":"tag-vmware","13":"tag-wapi","14":"entry"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Automatically scale the Infoblox Grid in your VMWare environment<\/title>\n<meta name=\"description\" content=\"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automatically scale the Infoblox Grid in your VMWare environment\" \/>\n<meta property=\"og:description\" content=\"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/\" \/>\n<meta property=\"og:site_name\" content=\"Infoblox Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-15T17:47:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-06T17:27:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"660\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Krishna Vasudevan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Krishna Vasudevan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/\"},\"author\":{\"name\":\"Krishna Vasudevan\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/b36c6d54e0fd1947f822a993aab5e8b8\"},\"headline\":\"Automatically scale the Infoblox Grid in your VMWare environment\",\"datePublished\":\"2018-10-15T17:47:01+00:00\",\"dateModified\":\"2020-05-06T17:27:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/\"},\"wordCount\":624,\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/community-banner-13.jpg\",\"keywords\":[\"Cloud Automation\",\"DDI\",\"Infoblox\",\"Tips &amp; Tricks\",\"VMware\",\"WAPI\"],\"articleSection\":[\"Community\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/\",\"name\":\"Automatically scale the Infoblox Grid in your VMWare environment\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/community-banner-13.jpg\",\"datePublished\":\"2018-10-15T17:47:01+00:00\",\"dateModified\":\"2020-05-06T17:27:03+00:00\",\"description\":\"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/community-banner-13.jpg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/community-banner-13.jpg\",\"width\":660,\"height\":454},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/community\\\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Community\",\"item\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/category\\\/community\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Automatically scale the Infoblox Grid in your VMWare environment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"name\":\"infoblox.com\\\/blog\\\/\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#organization\",\"name\":\"Infoblox\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"contentUrl\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/wp-content\\\/uploads\\\/infoblox-logo-2.svg\",\"width\":137,\"height\":30,\"caption\":\"Infoblox\"},\"image\":{\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/#\\\/schema\\\/person\\\/b36c6d54e0fd1947f822a993aab5e8b8\",\"name\":\"Krishna Vasudevan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/live-infoblox-blog.pantheonsite.io\\\/wp-content\\\/uploads\\\/avatar_user_230_1571768556-96x96.jpg\",\"url\":\"https:\\\/\\\/live-infoblox-blog.pantheonsite.io\\\/wp-content\\\/uploads\\\/avatar_user_230_1571768556-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/live-infoblox-blog.pantheonsite.io\\\/wp-content\\\/uploads\\\/avatar_user_230_1571768556-96x96.jpg\",\"caption\":\"Krishna Vasudevan\"},\"description\":\"Krishna Vasudevan is a Technical Marketing Engineer at Infoblox. She is currently working on REST APIs, Ansible, Automation, Openstack and DTC. She has also delivered multiple training classes. Previously she was a Technical Marketing Engineer at NetApp. Krishna holds a bachelor\u2019s degree in engineering from Bangalore. She resides in Bangalore and enjoys food, music and travel.\",\"url\":\"https:\\\/\\\/www.infoblox.com\\\/blog\\\/author\\\/krishna-vasudevan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Automatically scale the Infoblox Grid in your VMWare environment","description":"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/","og_locale":"en_US","og_type":"article","og_title":"Automatically scale the Infoblox Grid in your VMWare environment","og_description":"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.","og_url":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/","og_site_name":"Infoblox Blog","article_published_time":"2018-10-15T17:47:01+00:00","article_modified_time":"2020-05-06T17:27:03+00:00","og_image":[{"width":660,"height":454,"url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg","type":"image\/jpeg"}],"author":"Krishna Vasudevan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Krishna Vasudevan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#article","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/"},"author":{"name":"Krishna Vasudevan","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/b36c6d54e0fd1947f822a993aab5e8b8"},"headline":"Automatically scale the Infoblox Grid in your VMWare environment","datePublished":"2018-10-15T17:47:01+00:00","dateModified":"2020-05-06T17:27:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/"},"wordCount":624,"publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg","keywords":["Cloud Automation","DDI","Infoblox","Tips &amp; Tricks","VMware","WAPI"],"articleSection":["Community"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/","url":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/","name":"Automatically scale the Infoblox Grid in your VMWare environment","isPartOf":{"@id":"https:\/\/www.infoblox.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#primaryimage"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg","datePublished":"2018-10-15T17:47:01+00:00","dateModified":"2020-05-06T17:27:03+00:00","description":"Autoscaling is a method whereby the amount of computational resources in an environment, scales automatically based on the load.","breadcrumb":{"@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#primaryimage","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/community-banner-13.jpg","width":660,"height":454},{"@type":"BreadcrumbList","@id":"https:\/\/www.infoblox.com\/blog\/community\/automatically-scale-the-infoblox-grid-in-your-vmware-environment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.infoblox.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Community","item":"https:\/\/www.infoblox.com\/blog\/category\/community\/"},{"@type":"ListItem","position":3,"name":"Automatically scale the Infoblox Grid in your VMWare environment"}]},{"@type":"WebSite","@id":"https:\/\/www.infoblox.com\/blog\/#website","url":"https:\/\/www.infoblox.com\/blog\/","name":"infoblox.com\/blog\/","description":"","publisher":{"@id":"https:\/\/www.infoblox.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.infoblox.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.infoblox.com\/blog\/#organization","name":"Infoblox","url":"https:\/\/www.infoblox.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","contentUrl":"https:\/\/www.infoblox.com\/blog\/wp-content\/uploads\/infoblox-logo-2.svg","width":137,"height":30,"caption":"Infoblox"},"image":{"@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.infoblox.com\/blog\/#\/schema\/person\/b36c6d54e0fd1947f822a993aab5e8b8","name":"Krishna Vasudevan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/avatar_user_230_1571768556-96x96.jpg","url":"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/avatar_user_230_1571768556-96x96.jpg","contentUrl":"https:\/\/live-infoblox-blog.pantheonsite.io\/wp-content\/uploads\/avatar_user_230_1571768556-96x96.jpg","caption":"Krishna Vasudevan"},"description":"Krishna Vasudevan is a Technical Marketing Engineer at Infoblox. She is currently working on REST APIs, Ansible, Automation, Openstack and DTC. She has also delivered multiple training classes. Previously she was a Technical Marketing Engineer at NetApp. Krishna holds a bachelor\u2019s degree in engineering from Bangalore. She resides in Bangalore and enjoys food, music and travel.","url":"https:\/\/www.infoblox.com\/blog\/author\/krishna-vasudevan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/users\/230"}],"replies":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/comments?post=1660"}],"version-history":[{"count":1,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1660\/revisions"}],"predecessor-version":[{"id":1671,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/posts\/1660\/revisions\/1671"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media\/1669"}],"wp:attachment":[{"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/media?parent=1660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/categories?post=1660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infoblox.com\/blog\/wp-json\/wp\/v2\/tags?post=1660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}