{"id":3863,"date":"2018-10-30T17:15:42","date_gmt":"2018-10-30T15:15:42","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=3863"},"modified":"2018-10-30T11:28:32","modified_gmt":"2018-10-30T09:28:32","slug":"helm-chart-deploy-scale-app-image","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/","title":{"rendered":"Helm chart to deploy and scale a generic app image"},"content":{"rendered":"<p>This is a post about a simple\u00a0<a href=\"https:\/\/github.com\/helm\/charts\">helm chart<\/a> that I have worked on to deploy any generic app image to Kubernetes. The chart is available [<a href=\"https:\/\/github.com\/bijukunjummen\/generic-app-chart\">here<\/a>]<\/p>\n<p>It tries to solve the issue of having to manage a set of raw Kubernetes resources(<a href=\"https:\/\/kubernetes.io\/docs\/concepts\/workloads\/controllers\/deployment\/\">deployment<\/a>,<a href=\"https:\/\/kubernetes.io\/docs\/concepts\/configuration\/secret\/\">secrets<\/a>,<a href=\"https:\/\/kubernetes.io\/docs\/tasks\/run-application\/horizontal-pod-autoscale\/\">hpa<\/a>) and instead letting helm manage these resources. The chart is generic enough that it should be able to handle most\u00a0<a href=\"https:\/\/12factor.net\/\">12-factor compliant<\/a> app images.<\/p>\n<p>Consider a simple app that I have\u00a0<a href=\"https:\/\/github.com\/bijukunjummen\/sample-boot-knative\">here<\/a> &#8211; https:\/\/github.com\/bijukunjummen\/sample-boot-knative, an image for this application is publicly available on dockerhub &#8211; https:\/\/hub.docker.com\/r\/bijukunjummen\/sample-boot-knative-app\/<\/p>\n<p>If I wanted to deploy this app in a Kubernetes cluster, a set of specs to create a Kubernetes Deployment and a service is available\u00a0<a href=\"https:\/\/github.com\/bijukunjummen\/sample-boot-knative\/tree\/master\/kube\">here<\/a> &#8211; https:\/\/github.com\/bijukunjummen\/sample-boot-knative\/tree\/master\/kube. This is a simple enough deployment, however, the specs can get complicated once configuration, secrets are layered in and if features like Horizontal scaling is required.<\/p>\n<h2>Usage<\/h2>\n<p>There is a good documentation in the\u00a0<a href=\"https:\/\/github.com\/bijukunjummen\/generic-app-chart\">README<\/a> of the chart, I will be mostly repeating that information here. I have hosted a version of the chart as a\u00a0<a href=\"https:\/\/github.com\/helm\/helm\/blob\/master\/docs\/chart_repository.md\">chart repository<\/a> using\u00a0<a href=\"https:\/\/pages.github.com\/\">github-pages<\/a>, the first step to using the chart is to add this repo to your list of helm repos:<\/p>\n<pre class=\" brush:java\">helm repo add bk-charts http:\/\/bijukunjummen.github.io\/generic-app-chart\r\nhelm repo update<\/pre>\n<p>The chart should now show up if searched for:<\/p>\n<pre class=\" brush:java\">helm search generic-app-chart<\/pre>\n<p>The chart requires the details of the application that is being deployed, which can be provided as a yaml the following way:<\/p>\n<pre class=\" brush:java\">app:\r\n  healthCheckPath: \/actuator\/info\r\n  environment:\r\n    SERVER_PORT: \"8080\"\r\n    ENV_NAME: ENV_VALUE\r\n  secrets:\r\n    SECRET1: SECRET_VALUE1\r\n  autoscaling:\r\n    enabled: true\r\n    maxReplicas: 2\r\n    minReplicas: 1\r\n    targetCPUUtilizationPercentage: 40    \r\n\r\nimage:\r\n  repository: bijukunjummen\/sample-boot-knative-app\r\n  tag: 0.0.3-SNAPSHOT    \r\n\r\ningress:\r\n  enabled: true\r\n  path: \/\r\n  annotations:\r\n    kubernetes.io\/ingress.class: nginx\r\n    nginx.ingress.kubernetes.io\/affinity: \"cookie\"\r\n    nginx.ingress.kubernetes.io\/session-cookie-name: \"route\"\r\n\r\nresources:\r\n  constraints: \r\n    enabled: true\r\n  requests:\r\n    cpu: 500m<\/pre>\n<p>At a minimum, the only details that are required are the application image and the tag, the rest of the details is just for illustration of what is feasible.<\/p>\n<p>To deploy the app, run the following command:<\/p>\n<pre class=\" brush:java\">helm install bk-charts\/generic-app-chart  --name my-app --values sample-values.yaml<\/pre>\n<p>and a bunch of Kubernetes resources should show up supporting this application.<\/p>\n<p>App upgrades are simple, facilitated by helm:<\/p>\n<pre class=\" brush:java\">helm upgrade my-app bk-charts\/generic-app-chart -f sample-values.yaml<\/pre>\n<h2>Conclusion<\/h2>\n<p>The chart is fairly minimal at this point and creates a small set of Kubernetes resources &#8211; a secrets to hold secrets!, a deployment, a service, an\u00a0<a href=\"https:\/\/kubernetes.io\/docs\/tasks\/run-application\/horizontal-pod-autoscale\/\">hpa<\/a> to scale the app, which suffices the kind of use cases that I have encountered so far.<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on System Code Geeks with permission by Biju Kunjummen, partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/www.java-allandsundry.com\/2018\/10\/helm-chart-to-deploy-and-scale-generic.html\" target=\"_blank\" rel=\"noopener\">Helm chart to deploy and scale a generic app image<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This is a post about a simple\u00a0helm chart that I have worked on to deploy any generic app image to Kubernetes. The chart is available [here] It tries to solve the issue of having to manage a set of raw Kubernetes resources(deployment,secrets,hpa) and instead letting helm manage these resources. The chart is generic enough that &hellip;<\/p>\n","protected":false},"author":3223,"featured_media":188,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[39],"tags":[145],"class_list":["post-3863","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops","tag-kubernetes"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Helm chart to deploy and scale a generic app image - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.\" \/>\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.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Helm chart to deploy and scale a generic app image - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-30T15:15:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Biju Kunjummen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Biju Kunjummen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\"},\"author\":{\"name\":\"Biju Kunjummen\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/274a7fb3e76c7845881bf5c203fda3b7\"},\"headline\":\"Helm chart to deploy and scale a generic app image\",\"datePublished\":\"2018-10-30T15:15:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\"},\"wordCount\":398,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"keywords\":[\"Kubernetes\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\",\"name\":\"Helm chart to deploy and scale a generic app image - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"datePublished\":\"2018-10-30T15:15:42+00:00\",\"description\":\"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/devops\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Helm chart to deploy and scale a generic app image\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/274a7fb3e76c7845881bf5c203fda3b7\",\"name\":\"Biju Kunjummen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/66af1504c76f011746c89812efce168850f07dce91ce881e62795e10c99d30b3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/66af1504c76f011746c89812efce168850f07dce91ce881e62795e10c99d30b3?s=96&d=mm&r=g\",\"caption\":\"Biju Kunjummen\"},\"sameAs\":[\"http:\/\/biju-allandsundry.blogspot.com\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/biju-kunjummen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Helm chart to deploy and scale a generic app image - System Code Geeks - 2026","description":"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.","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.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/","og_locale":"en_US","og_type":"article","og_title":"Helm chart to deploy and scale a generic app image - System Code Geeks - 2026","og_description":"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.","og_url":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2018-10-30T15:15:42+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","type":"image\/jpeg"}],"author":"Biju Kunjummen","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Biju Kunjummen","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/"},"author":{"name":"Biju Kunjummen","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/274a7fb3e76c7845881bf5c203fda3b7"},"headline":"Helm chart to deploy and scale a generic app image","datePublished":"2018-10-30T15:15:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/"},"wordCount":398,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","keywords":["Kubernetes"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/","url":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/","name":"Helm chart to deploy and scale a generic app image - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","datePublished":"2018-10-30T15:15:42+00:00","description":"Interested to learn about Helm chart? Check our article explaining how a simple\u00a0helm chart can help to deploy any generic app image to Kubernetes.","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/devops\/helm-chart-deploy-scale-app-image\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"DevOps","item":"https:\/\/www.systemcodegeeks.com\/category\/devops\/"},{"@type":"ListItem","position":3,"name":"Helm chart to deploy and scale a generic app image"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/274a7fb3e76c7845881bf5c203fda3b7","name":"Biju Kunjummen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/66af1504c76f011746c89812efce168850f07dce91ce881e62795e10c99d30b3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/66af1504c76f011746c89812efce168850f07dce91ce881e62795e10c99d30b3?s=96&d=mm&r=g","caption":"Biju Kunjummen"},"sameAs":["http:\/\/biju-allandsundry.blogspot.com"],"url":"https:\/\/www.systemcodegeeks.com\/author\/biju-kunjummen\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/3223"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=3863"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3863\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/188"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=3863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=3863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=3863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}