{"id":3694,"date":"2024-02-26T17:00:08","date_gmt":"2024-02-26T17:00:08","guid":{"rendered":"https:\/\/code2deploy.com\/blog\/?p=3694"},"modified":"2024-03-09T18:31:18","modified_gmt":"2024-03-09T18:31:18","slug":"pod-with-yaml-in-k8s","status":"publish","type":"post","link":"https:\/\/code2deploy.com\/blog\/pod-with-yaml-in-k8s\/","title":{"rendered":"Pod with YAML in k8s"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>pod-definition.yaml<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note:<\/strong> Pod<strong> YAML <\/strong>also Deployment, Service, ReplicaSet, and others follow the below four top-level fields, these are the top-level or root-level properties.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>apiVersion:<br>kind:<br>metadata:<br><br>spec:&nbsp;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>apiVersion:<\/strong> this version depends on what we are trying to create we must use the right API version. Such as POD for version will be <strong>v1<\/strong>, <strong>service<\/strong> for version will be <strong>v1<\/strong>, <strong>ReplicaSet<\/strong> for version will be <strong>apps\/v1<\/strong>, and <strong>Deploymen<\/strong>t for <strong>apps\/v1<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>KInd<\/strong><\/td><td><strong>Version<\/strong><\/td><\/tr><tr><td><strong>POD<\/strong><\/td><td><strong>v1<\/strong><\/td><\/tr><tr><td><strong>Service&nbsp;<\/strong><\/td><td><strong>v1<\/strong><\/td><\/tr><tr><td><strong>ReplicaSet<\/strong><\/td><td><strong>apps\/v1<\/strong><\/td><\/tr><tr><td><strong>Deployment&nbsp;<\/strong><\/td><td><strong>apps\/v1<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Kind: <\/strong>This refers to the type of object we are trying to create which in this case happens, such as kind can be a Pod, Deployment, Service, or ReplicaSet.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Metadata:<\/strong> The metadata is data about the object like its name, labels, etc. Under the metadata, everything is intended to the right a little bit and so under the things are children of metadata.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Spec:<\/strong> This describes the desired state of the pod&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s a full example of a <strong>Pod YAML<\/strong> file:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>apiVersion: v1 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <br>kind: Pod\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <br>metadata:<br>\u00a0    name: example-pod<br>\u00a0    Labels:\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0  \u00a0 \u00a0 \u00a0<br>\u00a0   \u00a0app: example<br>spec:<br>\u00a0   containers:<br>\u00a0   &#8211; name: example-container\u00a0 <br>\u00a0 \u00a0   image: nginx<br>\u00a0 \u00a0   ports:<br>\u00a0 \u00a0   &#8211; containerPort: 80<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Let&#8217;s break down the key fields:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>apiVersion:<\/strong> Specifies the version of the Kubernetes API you&#8217;re using.<\/li>\n\n\n\n<li><strong>kind:<\/strong> Specifies the type of Kubernetes object, in this case, a Pod.<\/li>\n\n\n\n<li><strong>metadata<\/strong>: Contains metadata about the Pod, such as its name and labels.\n<ul class=\"wp-block-list\">\n<li><strong>name:<\/strong> The name of the Pod.<\/li>\n\n\n\n<li><strong>labels: <\/strong>Key-value pairs used to organize and select subsets of objects.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>spec:<\/strong> Describes the desired state of the Pod.\n<ul class=\"wp-block-list\">\n<li><strong>containers:<\/strong> An array of containers that should be run in this Pod.\n<ul class=\"wp-block-list\">\n<li><strong>name:<\/strong> The name of the container.<\/li>\n\n\n\n<li><strong>image:<\/strong> The Docker image to run within the container.<\/li>\n\n\n\n<li><strong>ports:<\/strong> Specifies ports that the container exposes.\n<ul class=\"wp-block-list\">\n<li><strong>containerPort<\/strong>: The port number the container listens on.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/code2deploy.com\/blog\/mastering-yaml-for-kubernetes-a-comprehensive-guide-with-examples\/\">K8s-YAML More details&#8230;..<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>pod-definition.yaml Note: Pod YAML also Deployment, Service, ReplicaSet, and others follow the below four top-level fields, these are the top-level or root-level properties. apiVersion:kind:metadata: spec:&nbsp; apiVersion: this version depends on what we are trying to create we must use the right API version. Such as POD for version will be v1, service for version will [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3695,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[142,145,144,140,143,141,147,15],"class_list":["post-3694","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kubernetes","tag-deployment","tag-kind","tag-metadata","tag-pod","tag-replicaset","tag-service","tag-spec","tag-yaml-manifest"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pod with YAML in k8s - code2deploy.com<\/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:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pod with YAML in k8s - code2deploy.com\" \/>\n<meta property=\"og:description\" content=\"pod-definition.yaml Note: Pod YAML also Deployment, Service, ReplicaSet, and others follow the below four top-level fields, these are the top-level or root-level properties. apiVersion:kind:metadata: spec:&nbsp; apiVersion: this version depends on what we are trying to create we must use the right API version. Such as POD for version will be v1, service for version will [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/\" \/>\n<meta property=\"og:site_name\" content=\"code2deploy.com\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-26T17:00:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-09T18:31:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.code2deploy.com\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png\" \/>\n\t<meta property=\"og:image:width\" content=\"810\" \/>\n\t<meta property=\"og:image:height\" content=\"405\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"enam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"enam\" \/>\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:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/\"},\"author\":{\"name\":\"enam\",\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"headline\":\"Pod with YAML in k8s\",\"datePublished\":\"2024-02-26T17:00:08+00:00\",\"dateModified\":\"2024-03-09T18:31:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/\"},\"wordCount\":307,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/pod-yaml-code2deploy.png\",\"keywords\":[\"deployment\",\"kind\",\"metadata\",\"pod\",\"replicaset\",\"service\",\"spec\",\"YAML Manifest\"],\"articleSection\":[\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/\",\"url\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/\",\"name\":\"Pod with YAML in k8s - code2deploy.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/pod-yaml-code2deploy.png\",\"datePublished\":\"2024-02-26T17:00:08+00:00\",\"dateModified\":\"2024-03-09T18:31:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#primaryimage\",\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/pod-yaml-code2deploy.png\",\"contentUrl\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/pod-yaml-code2deploy.png\",\"width\":810,\"height\":405,\"caption\":\"pod manifest\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.code2deploy.com\\\/pod-with-yaml-in-k8s\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pod with YAML in k8s\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/\",\"name\":\"code2deploy.com\\\/blog\",\"description\":\"TechOps\",\"publisher\":{\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/#\\\/schema\\\/person\\\/e46930c19b999a87f12566fa8357481b\",\"name\":\"enam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\",\"caption\":\"enam\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g\"},\"sameAs\":[\"https:\\\/\\\/code2deploy.com\\\/blog\"],\"url\":\"https:\\\/\\\/code2deploy.com\\\/blog\\\/author\\\/enam\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pod with YAML in k8s - code2deploy.com","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:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/","og_locale":"en_US","og_type":"article","og_title":"Pod with YAML in k8s - code2deploy.com","og_description":"pod-definition.yaml Note: Pod YAML also Deployment, Service, ReplicaSet, and others follow the below four top-level fields, these are the top-level or root-level properties. apiVersion:kind:metadata: spec:&nbsp; apiVersion: this version depends on what we are trying to create we must use the right API version. Such as POD for version will be v1, service for version will [&hellip;]","og_url":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/","og_site_name":"code2deploy.com","article_published_time":"2024-02-26T17:00:08+00:00","article_modified_time":"2024-03-09T18:31:18+00:00","og_image":[{"width":810,"height":405,"url":"https:\/\/blog.code2deploy.com\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png","type":"image\/png"}],"author":"enam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"enam","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#article","isPartOf":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/"},"author":{"name":"enam","@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"headline":"Pod with YAML in k8s","datePublished":"2024-02-26T17:00:08+00:00","dateModified":"2024-03-09T18:31:18+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/"},"wordCount":307,"commentCount":1,"publisher":{"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"image":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#primaryimage"},"thumbnailUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png","keywords":["deployment","kind","metadata","pod","replicaset","service","spec","YAML Manifest"],"articleSection":["Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/","url":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/","name":"Pod with YAML in k8s - code2deploy.com","isPartOf":{"@id":"https:\/\/code2deploy.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#primaryimage"},"image":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#primaryimage"},"thumbnailUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png","datePublished":"2024-02-26T17:00:08+00:00","dateModified":"2024-03-09T18:31:18+00:00","breadcrumb":{"@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#primaryimage","url":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png","contentUrl":"https:\/\/code2deploy.com\/blog\/wp-content\/uploads\/2024\/02\/pod-yaml-code2deploy.png","width":810,"height":405,"caption":"pod manifest"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.code2deploy.com\/pod-with-yaml-in-k8s\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/code2deploy.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Pod with YAML in k8s"}]},{"@type":"WebSite","@id":"https:\/\/code2deploy.com\/blog\/#website","url":"https:\/\/code2deploy.com\/blog\/","name":"code2deploy.com\/blog","description":"TechOps","publisher":{"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/code2deploy.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/code2deploy.com\/blog\/#\/schema\/person\/e46930c19b999a87f12566fa8357481b","name":"enam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g","caption":"enam"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/d864e2f082f4499f8f1b33f004ec166eea77b9e94738553b120b6dca2410f203?s=96&d=mm&r=g"},"sameAs":["https:\/\/code2deploy.com\/blog"],"url":"https:\/\/code2deploy.com\/blog\/author\/enam\/"}]}},"_links":{"self":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3694","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/comments?post=3694"}],"version-history":[{"count":4,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3694\/revisions"}],"predecessor-version":[{"id":3776,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/posts\/3694\/revisions\/3776"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/media\/3695"}],"wp:attachment":[{"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/media?parent=3694"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/categories?post=3694"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/code2deploy.com\/blog\/wp-json\/wp\/v2\/tags?post=3694"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}