{"id":7984,"date":"2025-03-15T09:05:41","date_gmt":"2025-03-15T03:35:41","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=7984"},"modified":"2025-03-15T09:05:44","modified_gmt":"2025-03-15T03:35:44","slug":"how-to-install-kubernetes-using-kops-on-aws","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/","title":{"rendered":"HOW TO INSTALL KUBERNETES USING KOPS ON AWS"},"content":{"rendered":"\n<p><strong>INTRODUCTION:<\/strong><\/p>\n\n\n\n<p>Kops is an open-source tool designed to simplify the process of creating, managing, and maintaining Kubernetes clusters on AWS. It automates the entire lifecycle of a Kubernetes cluster, from initial setup to upgrades and ongoing maintenance. we will walk you through the step-by-step process of installing Kubernetes using Kops on AWS. We will cover the necessary prerequisites, detailed installation steps, and best practices to ensure a smooth and successful deployment. This tutorial will provide you with the knowledge and tools to get your Kubernetes cluster up and running efficiently on AWS.<\/p>\n\n\n\n<p><strong>KOPS REQUIREMENTS:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Linux(machine) Ubuntu-2 cpu, 4GB RAM<\/li>\n\n\n\n<li>AWS Account<br>-IAM user<br>-S3 bucket to store the kops state<\/li>\n\n\n\n<li>KOPS binary<\/li>\n\n\n\n<li>Kubectl binary<\/li>\n\n\n\n<li>Generate SSH key<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 1:<\/h4>\n\n\n\n<p>Kops binary setup:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>curl -Lo kops https:\/\/github.com\/kubernetes\/kops\/releases\/latest\/download\/kops-linux-amd64<br>chmod +x .\/kops<br>sudo mv .\/kops \/usr\/local\/bin\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 2:<\/h3>\n\n\n\n<p>Kubectl binary setup:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>curl -LO &#8220;https:\/\/storage.googleapis.com\/kubernetes-release\/release\/$(curl -s https:\/\/storage.googleapis.com\/kubernetes-release\/release\/stable.txt)\/bin\/linux\/amd64\/kubectl&#8221;<br>chmod +x .\/kubectl<br>sudo mv .\/kubectl \/usr\/local\/bin\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 3:<\/h3>\n\n\n\n<p>Setup IAM user:<\/p>\n\n\n\n<p>To securely manage your Kubernetes clusters on AWS using Kops, it&#8217;s essential to create a dedicated IAM user with the appropriate permissions. The kops user will require the necessary permission to function properly.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>AmazonEC2FullAccess<br>AmazonRoute53FullAccess<br>AmazonS3FullAccess<br>IAMFullAccess<br>AmazonVPCFullAccess<br>AmazonSQSFullAccess<br>AmazonEventBridgeFullAccess<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 4:<\/h3>\n\n\n\n<p>We need to create an IAM user and configure the aws to your New IAM user.<\/p>\n\n\n\n<p>Install AWS CLI:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>sudo apt update<br>sudo apt install awscli -y<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Configure AWS CLI:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>aws configure<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Enter the Access Key ID and Secret Access Key of the IAM user you created. Also, specify the default region name (eg: us-east-1) and the output format (eg: json).<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>AWS Access Key ID [None]:<br>AWS Secret Access Key [None]:<br>Default region name [None]:<br>Default output format [None]: json<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 5:<\/h3>\n\n\n\n<p>Add the AWS Access Key ID and AWS Secret Access Key as env variables.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>export AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id)<br>export AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 6:<\/h3>\n\n\n\n<p>We need to create the S3 buckets to store the Kops state.<\/p>\n\n\n\n<p>The bucket name must be unique.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 7:<\/h3>\n\n\n\n<p>Generate SSH Keys<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>ssh-keygen<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 8:<\/h3>\n\n\n\n<p>Creating your first cluster. Prepare the local environment.<\/p>\n\n\n\n<p>We need to set up some env variables to make this process easier.<\/p>\n\n\n\n<p>We need to mention the name of the cluster and the name of the s3 bucket. The cluster name should end with k8s.local. For example:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>export NAME=naveen.k8s.local<br>export KOPS_STATE_STORE=s3:\/\/newbucket2024<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 9:<\/h3>\n\n\n\n<p>The below command is to create the cluster.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops create cluster &#8211;zones ap-south-1 ${NAME}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If choose multiple availability zones<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops create cluster &#8211;zones ap-south-1,east-1b ${NAME}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 10:<\/h3>\n\n\n\n<p>Using the below command to edit your node instance group.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops edit ig &#8211;name=Naveen.k8s.local nodes-ap-south-1<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">In this node, we can edit the minimum and maximum node instances.<\/figcaption><\/figure>\n\n\n\n<p>Using the below command to edit your master instance group.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops edit ig &#8211;name=Naveen.k8s.local master-ap-south-1<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 11:<\/h3>\n\n\n\n<p>Finally, configure your cluster.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops update cluster &#8211;name naveen.k8s.local &#8211;yes &#8211;admin<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 12:<\/h3>\n\n\n\n<p>We need to validate the cluster using the below command.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops validate cluster<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">It will show the instance groups and nodes&#8217; status.<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">STEP 13:<\/h3>\n\n\n\n<p>We can use the below command to delete the cluster.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>kops delete cluster &#8211;name=naveen.k8s.local &#8211;state=s3:\/\/newbucket2024 &#8211;yes<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">CONCLUSION:<\/h3>\n\n\n\n<p>Setting up Kubernetes on AWS using Kops is a powerful way to manage your containerized applications with ease and efficiency. Through this guide, we have walked through the essential steps<br>By following these steps, you have set up a robust Kubernetes cluster on AWS, capable of supporting your development and production workloads. This setup not only simplifies cluster management but also provides the scalability and reliability needed for modern applications.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>INTRODUCTION: Kops is an open-source tool designed to simplify the process of creating, managing, and maintaining Kubernetes clusters on AWS. It automates the entire lifecycle of a Kubernetes cluster, from initial setup to upgrades and ongoing maintenance. we will walk you through the step-by-step process of installing Kubernetes using Kops&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">HOW TO INSTALL KUBERNETES USING KOPS ON AWS<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":510,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[819,303,854,1],"tags":[],"class_list":{"0":"post-7984","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-aws","7":"category-devops","8":"category-kubernetes","9":"category-uncategorized","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"INTRODUCTION: Kops is an open-source tool designed to simplify the process of creating, managing, and maintaining Kubernetes clusters on AWS. It automates the entire lifecycle of a Kubernetes cluster, from initial setup to upgrades and ongoing maintenance. we will walk you through the step-by-step process of installing Kubernetes using Kops&hellip; Continue Reading HOW TO INSTALL KUBERNETES USING KOPS ON AWS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-15T03:35:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-15T03:35:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Naveen Prasad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Naveen Prasad\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/\"},\"author\":{\"name\":\"Naveen Prasad\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e0b107d557060d31788b0abd1965e55\"},\"headline\":\"HOW TO INSTALL KUBERNETES USING KOPS ON AWS\",\"datePublished\":\"2025-03-15T03:35:41+00:00\",\"dateModified\":\"2025-03-15T03:35:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/\"},\"wordCount\":636,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"articleSection\":[\"AWS\",\"Devops\",\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-03-15T03:35:41+00:00\",\"dateModified\":\"2025-03-15T03:35:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-kubernetes-using-kops-on-aws\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HOW TO INSTALL KUBERNETES USING KOPS ON AWS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e0b107d557060d31788b0abd1965e55\",\"name\":\"Naveen Prasad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g\",\"caption\":\"Naveen Prasad\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/naveen-prasad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"INTRODUCTION: Kops is an open-source tool designed to simplify the process of creating, managing, and maintaining Kubernetes clusters on AWS. It automates the entire lifecycle of a Kubernetes cluster, from initial setup to upgrades and ongoing maintenance. we will walk you through the step-by-step process of installing Kubernetes using Kops&hellip; Continue Reading HOW TO INSTALL KUBERNETES USING KOPS ON AWS","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-03-15T03:35:41+00:00","article_modified_time":"2025-03-15T03:35:44+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Naveen Prasad","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Naveen Prasad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/"},"author":{"name":"Naveen Prasad","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/7e0b107d557060d31788b0abd1965e55"},"headline":"HOW TO INSTALL KUBERNETES USING KOPS ON AWS","datePublished":"2025-03-15T03:35:41+00:00","dateModified":"2025-03-15T03:35:44+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/"},"wordCount":636,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"articleSection":["AWS","Devops","Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2025-03-15T03:35:41+00:00","dateModified":"2025-03-15T03:35:44+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-kubernetes-using-kops-on-aws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HOW TO INSTALL KUBERNETES USING KOPS ON AWS"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/7e0b107d557060d31788b0abd1965e55","name":"Naveen Prasad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c040d480588ba05e6689aa14fcc899bd3507bbd0fd2e7f7ee38e6b6b8e264f6e?s=96&r=g","caption":"Naveen Prasad"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/naveen-prasad\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-24M","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/510"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=7984"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/7984\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=7984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=7984"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=7984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}