{"id":11691,"date":"2021-03-03T16:00:47","date_gmt":"2021-03-03T22:00:47","guid":{"rendered":"https:\/\/sterling.com\/?p=11691"},"modified":"2021-03-03T16:00:47","modified_gmt":"2021-03-03T22:00:47","slug":"application-continuous-deployment-on-aws-using-aws-eks-gitlab-and-jenkins","status":"publish","type":"post","link":"https:\/\/sterling.com\/stargazer\/?p=11691","title":{"rendered":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins"},"content":{"rendered":"<p>Written by <em>Hitesh Kumar<\/em><\/p>\n<p>This blog is to help to demonstrate the procedure to automate the application deployment using DevOps tools like AWS EKS (Elastic Kubernetes Services), Docker Hub Registry, GitLab, and Jenkins. The process includes but is not limited to implementation and the configuration of various tools. The outcome of this process is to automate the deployment process using CI\/CD (Continuous Integration and Continuous Deployment).<\/p>\n<h1><span style=\"font-size: 18pt;\">Components:<\/span><\/h1>\n<ul>\n<li>AWS EKS (Elastic Kubernetes Service)<\/li>\n<li>Docker Hub or Any Docker Registry<\/li>\n<li>GitLab (Cloud-based or Self-hosted)<\/li>\n<li>Jenkins Docker Build<\/li>\n<li>Jenkins Code Deploy<\/li>\n<li>AWS SES (Simple Email Service)<\/li>\n<li>Git (Local)<\/li>\n<li>Microsoft Visual Studio Code IDE (Local)<\/li>\n<\/ul>\n<h1><span style=\"font-size: 18pt;\">Process:<br \/>\n<\/span><span style=\"font-size: 14pt;\">Step 1: Creating an EKS cluster with 2 worker nodes<\/span><\/h1>\n<p>In this first step, we need to setup an EKS cluster with 2 worker nodes. EKS is a managed service so the master node will be automatically managed by AWS. We will deploy the EKS cluster by following guidelines provided by AWS:<\/p>\n<p><a href=\"https:\/\/docs.aws.amazon.com\/eks\/latest\/userguide\/getting-started-console.html\">https:\/\/docs.aws.amazon.com\/eks\/latest\/userguide\/getting-started-console.html<\/a><\/p>\n<h3><span style=\"font-size: 14pt;\">EKS Cluster Architecture:<\/span><\/h3>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-11693 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-1.png\" alt=\"\" width=\"508\" height=\"467\" \/><\/p>\n<p>After setting up the EKS Cluster, we need to setup the other components like AWS ECR &amp; code management tools.<\/p>\n<h3><span style=\"font-size: 14pt;\">Step 2: Creating a Docker Hub Registry to save the Docker Images<\/span><\/h3>\n<p>Our next step requires us to setup a container registry on Docker Hub. It could be a private registry as well and some other self-hosted Docker like Harbor. We can create a set of credentials to log into the Docker Hub registry. We need to create a registry so that we can push the Docker Image using Jenkins. Docker Hub is the world&#8217;s largest library and community for container images. You can browse over 100,000 container images from software vendors, open-source projects, and the community. <a href=\"https:\/\/hub.docker.com\/\">https:\/\/hub.docker.com\/<\/a><\/p>\n<h3><img decoding=\"async\" class=\"wp-image-11694 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-2.png\" alt=\"\" width=\"493\" height=\"305\" \/><\/h3>\n<h3><\/h3>\n<h3><span style=\"font-size: 14pt;\">Step 3: Setup GitLab<\/span><\/h3>\n<p>GitLab is a web-based DevOps lifecycle tool that provides a Git-repository manager providing wiki, issue-tracking, and CI\/CD pipeline features, using an open-source license. We need to setup a GitLab account. The GitLab could be cloud-based or self-hosted. We can sign up to GitLab using an email. <a href=\"https:\/\/about.gitlab.com\/\">https:\/\/about.gitlab.com\/<\/a><\/p>\n<h3><img decoding=\"async\" class=\"wp-image-11695 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-3.png\" alt=\"\" width=\"514\" height=\"322\" \/><\/h3>\n<h3><\/h3>\n<h3><span style=\"font-size: 14pt;\">Step 4: Setup Jenkins on an EC2 machine<\/span><\/h3>\n<p>Step 4 is to setup Jenkins on an EC2 machine. Jenkins is a free and open-source automation server. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery. It is a server-based system that runs in servlet containers such as Apache Tomcat.<\/p>\n<p>We need to install Jenkins on an EC2 machine in the same VPC where the EKS Cluster is deployed so that we can deploy the changes to the EKS Cluster worker nodes. We can use Ubuntu Server to install Jenkins.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11696 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-4.png\" alt=\"\" width=\"537\" height=\"327\" \/><\/p>\n<h3><\/h3>\n<h3><span style=\"font-size: 14pt;\">Step 5: Integrate Jenkins with GitLab, Docker Hub, and EKS Cluster<\/span><\/h3>\n<p>Now, we need to integrate Jenkins with various components like GitLab, Docker Hub, and EKS Cluster. There is an adequate number of plugins available with Jenkins to integrate with the various tools. After the installation of various plugins, we are good to go for continuous deployment.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11697 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-5.png\" alt=\"\" width=\"847\" height=\"548\" \/><\/p>\n<h3><\/h3>\n<h3><span style=\"font-size: 14pt;\">Step 6: Create a GitLab Project and push the code<\/span><\/h3>\n<p>Our last step is to create a GitLab Project so that we can commit the code to the project. After we commit, we need to review and merge the code to the respective branch so that Jenkins can start fetching the code and start to build the artefact. After the successful build, Jenkins pushes the Docker Image to Docker Hub and initiates the Rolling update to the EKS Cluster.<\/p>\n<h2><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11698 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-6.png\" alt=\"\" width=\"692\" height=\"193\" \/><\/h2>\n<h2><span style=\"font-size: 18pt;\">Process Flow:<\/span><\/h2>\n<ul>\n<li>Developer develops the application<\/li>\n<li>Developer commits the code to GitLab<\/li>\n<li>Reviewer reviews the code and merges to the respective branch<\/li>\n<li>Jenkins continuously monitors the respective branch and initiates the code build<\/li>\n<li>Jenkins builds the container image, tags, and pushes the images to Docker Hub<\/li>\n<li>Jenkins triggers the image roll-out to the EKS cluster<\/li>\n<li>EKS will roll-out the updated image using rolling update strategy<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-11699 aligncenter\" src=\"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2021\/03\/Figure-7.png\" alt=\"\" width=\"802\" height=\"411\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Written by Hitesh Kumar This blog is to help to demonstrate the procedure to automate the application deployment using DevOps tools like AWS EKS (Elastic Kubernetes Services), Docker Hub Registry, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":11714,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,13,14,15],"tags":[],"class_list":["post-11691","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-announcements","category-blog","category-cloud","category-data-center"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling\" \/>\n<meta property=\"og:description\" content=\"Written by Hitesh Kumar This blog is to help to demonstrate the procedure to automate the application deployment using DevOps tools like AWS EKS (Elastic Kubernetes Services), Docker Hub Registry, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sterling.com\/stargazer\/?p=11691\" \/>\n<meta property=\"og:site_name\" content=\"Sterling\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/SterlingComp\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-03T22:00:47+00:00\" \/>\n<meta name=\"author\" content=\"Sterling\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sterlingcomp\" \/>\n<meta name=\"twitter:site\" content=\"@sterlingcomp\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sterling\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691\"},\"author\":{\"name\":\"Sterling\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#\\\/schema\\\/person\\\/b812a18f3a1e77cd0925429d1546e49d\"},\"headline\":\"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins\",\"datePublished\":\"2021-03-03T22:00:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691\"},\"wordCount\":650,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Announcements\",\"Blog\",\"Cloud\",\"Data Center\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691\",\"url\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691\",\"name\":\"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2021-03-03T22:00:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?p=11691#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#website\",\"url\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/\",\"name\":\"Sterling\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#organization\",\"name\":\"Sterling\",\"url\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Sterling-Computers-Logo-TM.png\",\"contentUrl\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Sterling-Computers-Logo-TM.png\",\"width\":399,\"height\":145,\"caption\":\"Sterling\"},\"image\":{\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/facebook.com\\\/SterlingComp\\\/\",\"https:\\\/\\\/x.com\\\/sterlingcomp\",\"https:\\\/\\\/www.instagram.com\\\/sterlingcomputers\\\/\",\"http:\\\/\\\/youtube.com\\\/@sterlingcomp\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/sterling-computers\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/#\\\/schema\\\/person\\\/b812a18f3a1e77cd0925429d1546e49d\",\"name\":\"Sterling\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g\",\"caption\":\"Sterling\"},\"url\":\"https:\\\/\\\/sterling.com\\\/stargazer\\\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling","og_description":"Written by Hitesh Kumar This blog is to help to demonstrate the procedure to automate the application deployment using DevOps tools like AWS EKS (Elastic Kubernetes Services), Docker Hub Registry, [&hellip;]","og_url":"https:\/\/sterling.com\/stargazer\/?p=11691","og_site_name":"Sterling","article_publisher":"http:\/\/facebook.com\/SterlingComp\/","article_published_time":"2021-03-03T22:00:47+00:00","author":"Sterling","twitter_card":"summary_large_image","twitter_creator":"@sterlingcomp","twitter_site":"@sterlingcomp","twitter_misc":{"Written by":"Sterling","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sterling.com\/stargazer\/?p=11691#article","isPartOf":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691"},"author":{"name":"Sterling","@id":"https:\/\/sterling.com\/stargazer\/#\/schema\/person\/b812a18f3a1e77cd0925429d1546e49d"},"headline":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins","datePublished":"2021-03-03T22:00:47+00:00","mainEntityOfPage":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691"},"wordCount":650,"commentCount":0,"publisher":{"@id":"https:\/\/sterling.com\/stargazer\/#organization"},"image":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691#primaryimage"},"thumbnailUrl":"","articleSection":["Announcements","Blog","Cloud","Data Center"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/sterling.com\/stargazer\/?p=11691","url":"https:\/\/sterling.com\/stargazer\/?p=11691","name":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins - Sterling","isPartOf":{"@id":"https:\/\/sterling.com\/stargazer\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691#primaryimage"},"image":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691#primaryimage"},"thumbnailUrl":"","datePublished":"2021-03-03T22:00:47+00:00","breadcrumb":{"@id":"https:\/\/sterling.com\/stargazer\/?p=11691#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sterling.com\/stargazer\/?p=11691"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sterling.com\/stargazer\/?p=11691#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/sterling.com\/stargazer\/?p=11691#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sterling.com\/stargazer\/"},{"@type":"ListItem","position":2,"name":"Application Continuous Deployment on AWS using AWS EKS, GitLab, and Jenkins"}]},{"@type":"WebSite","@id":"https:\/\/sterling.com\/stargazer\/#website","url":"https:\/\/sterling.com\/stargazer\/","name":"Sterling","description":"","publisher":{"@id":"https:\/\/sterling.com\/stargazer\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sterling.com\/stargazer\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sterling.com\/stargazer\/#organization","name":"Sterling","url":"https:\/\/sterling.com\/stargazer\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sterling.com\/stargazer\/#\/schema\/logo\/image\/","url":"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2023\/03\/Sterling-Computers-Logo-TM.png","contentUrl":"https:\/\/sterling.com\/stargazer\/wp-content\/uploads\/2023\/03\/Sterling-Computers-Logo-TM.png","width":399,"height":145,"caption":"Sterling"},"image":{"@id":"https:\/\/sterling.com\/stargazer\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/facebook.com\/SterlingComp\/","https:\/\/x.com\/sterlingcomp","https:\/\/www.instagram.com\/sterlingcomputers\/","http:\/\/youtube.com\/@sterlingcomp","https:\/\/www.linkedin.com\/company\/sterling-computers"]},{"@type":"Person","@id":"https:\/\/sterling.com\/stargazer\/#\/schema\/person\/b812a18f3a1e77cd0925429d1546e49d","name":"Sterling","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/49107847cab9312fecfc9475e27da24373a491ca9faf45408ea019ad846f2c44?s=96&d=mm&r=g","caption":"Sterling"},"url":"https:\/\/sterling.com\/stargazer\/?author=2"}]}},"_links":{"self":[{"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/wp\/v2\/posts\/11691","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=11691"}],"version-history":[{"count":0,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/wp\/v2\/posts\/11691\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=\/"}],"wp:attachment":[{"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=11691"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=11691"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sterling.com\/stargazer\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=11691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}