{"id":3491,"date":"2018-04-11T17:15:38","date_gmt":"2018-04-11T14:15:38","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=3491"},"modified":"2018-04-11T10:41:59","modified_gmt":"2018-04-11T07:41:59","slug":"injecting-multiple-kubernetes-volumes-to-the-same-directory","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/","title":{"rendered":"Injecting multiple Kubernetes volumes to the same directory"},"content":{"rendered":"<p>Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from different config maps or secrets to be injected into the same location, we are required to specify a sub path:<\/p>\n<pre class=\"brush:php\">kind: Deployment\r\napiVersion: apps\/v1\r\nmetadata:\r\n  name: hello-world\r\nspec:\r\n  replicas: 1\r\n  template:\r\n    metadata:\r\n      labels:\r\n        app: hello-world\r\n    spec:\r\n      containers:\r\n      - name: hello-world\r\n        image: docker.example.com\/app:1\r\n        volumeMounts:\r\n        - name: hello-world-config-volume\r\n          mountPath: \/config\/application.properties\r\n          subPath: application.properties\r\n          readOnly: true\r\n        - name: hello-world-credentials-volume\r\n          mountPath: \/config\/credentials.properties\r\n          subPath: credentials.properties\r\n          readOnly: true\r\n      volumes:\r\n      - name: hello-world-config-volume\r\n        configMap:\r\n          name: hello-world-config\r\n      - name: hello-world-credentials-volume\r\n        secret:\r\n          secretName: hello-world-credentials<\/pre>\n<p>This example will create two volumes from the contents of the config map <code>hello-world-config<\/code> and the secret <code>hello-world-credentials<\/code>.<\/p>\n<p>Imagine, these resources have the following contents:<\/p>\n<pre class=\"brush:php\">kind: ConfigMap\r\napiVersion: v1\r\nmetadata:\r\n  name: hello-world-config\r\ndata:\r\n  application.properties: |\r\n    greeting=Hello\r\n    name=World\r\n\r\n---\r\n\r\nkind: Secret\r\napiVersion: v1\r\nmetadata:\r\n  name: hello-world-credentials\r\ndata:\r\n  credentials.properties: &lt;base64&gt;\r\ntype: Opaque<\/pre>\n<p>The example will mount the file contents of the key <code>application.properties<\/code> of the config map to a file with the same name under <code>\/config\/<\/code> and will mount the secret value <code>credentials.properties<\/code> as the second file under that directory. The application will be able to access both files read-only.<\/p>\n<p>The <code>subPath<\/code> declaration also allows to mount a single volume into the pod multiple times with different sub paths.<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on System Code Geeks with permission by Sebastian Daschner, 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=\"https:\/\/blog.sebastian-daschner.com\/entries\/multiple-kubernetes-volumes-directory\" target=\"_blank\" rel=\"noopener\">Injecting multiple Kubernetes volumes to the same directory<\/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>Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from different config maps or secrets to be injected into the same location, we are required to specify a sub path: kind: Deployment apiVersion: apps\/v1 metadata: name: hello-world spec: replicas: 1 template: metadata: labels: &hellip;<\/p>\n","protected":false},"author":1490,"featured_media":188,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[39],"tags":[145],"class_list":["post-3491","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>Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from\" \/>\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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\" \/>\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-04-11T14:15:38+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=\"Sebastian Daschner\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DaschnerS\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sebastian Daschner\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\"},\"author\":{\"name\":\"Sebastian Daschner\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9e45b8cb8485a741a785f8a11fe79904\"},\"headline\":\"Injecting multiple Kubernetes volumes to the same directory\",\"datePublished\":\"2018-04-11T14:15:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\"},\"wordCount\":174,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\",\"name\":\"Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"datePublished\":\"2018-04-11T14:15:38+00:00\",\"description\":\"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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\":\"Injecting multiple Kubernetes volumes to the same directory\"}]},{\"@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\/9e45b8cb8485a741a785f8a11fe79904\",\"name\":\"Sebastian Daschner\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c5f7cd4d32ab6265242b5c9fdb10e6be68a6a583d8863f746fd9852b8149bbd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c5f7cd4d32ab6265242b5c9fdb10e6be68a6a583d8863f746fd9852b8149bbd9?s=96&d=mm&r=g\",\"caption\":\"Sebastian Daschner\"},\"description\":\"Sebastian Daschner is a self-employed Java consultant and trainer. He is the author of the book 'Architecting Modern Java EE Applications'. Sebastian is a Java Champion, Oracle Developer Champion and JavaOne Rockstar.\",\"sameAs\":[\"https:\/\/blog.sebastian-daschner.com\/\",\"https:\/\/x.com\/DaschnerS\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/sebastian-daschner\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026","description":"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from","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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/","og_locale":"en_US","og_type":"article","og_title":"Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026","og_description":"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from","og_url":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2018-04-11T14:15:38+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":"Sebastian Daschner","twitter_card":"summary_large_image","twitter_creator":"@DaschnerS","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Sebastian Daschner","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/"},"author":{"name":"Sebastian Daschner","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/9e45b8cb8485a741a785f8a11fe79904"},"headline":"Injecting multiple Kubernetes volumes to the same directory","datePublished":"2018-04-11T14:15:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/"},"wordCount":174,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/","url":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/","name":"Injecting multiple Kubernetes volumes to the same directory - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","datePublished":"2018-04-11T14:15:38+00:00","description":"Kubernetes config maps and secrets allow use to inject configuration files into containers. If we want multiple config entries that originate from","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/devops\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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\/injecting-multiple-kubernetes-volumes-to-the-same-directory\/#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":"Injecting multiple Kubernetes volumes to the same directory"}]},{"@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\/9e45b8cb8485a741a785f8a11fe79904","name":"Sebastian Daschner","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c5f7cd4d32ab6265242b5c9fdb10e6be68a6a583d8863f746fd9852b8149bbd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c5f7cd4d32ab6265242b5c9fdb10e6be68a6a583d8863f746fd9852b8149bbd9?s=96&d=mm&r=g","caption":"Sebastian Daschner"},"description":"Sebastian Daschner is a self-employed Java consultant and trainer. He is the author of the book 'Architecting Modern Java EE Applications'. Sebastian is a Java Champion, Oracle Developer Champion and JavaOne Rockstar.","sameAs":["https:\/\/blog.sebastian-daschner.com\/","https:\/\/x.com\/DaschnerS"],"url":"https:\/\/www.systemcodegeeks.com\/author\/sebastian-daschner\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3491","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\/1490"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=3491"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3491\/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=3491"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=3491"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=3491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}