{"id":1028,"date":"2025-06-01T06:00:00","date_gmt":"2025-06-01T04:00:00","guid":{"rendered":"https:\/\/ahmed-nasr.info\/?p=1028"},"modified":"2025-05-23T12:04:29","modified_gmt":"2025-05-23T10:04:29","slug":"deploying-odoo-in-kubernetes-helm-postgresql-internal-access","status":"publish","type":"post","link":"https:\/\/ahmed-nasr.info\/?p=1028","title":{"rendered":"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\" id=\"h-introduction-to-helm-based-odoo-deployment\">Introduction to Helm-Based Odoo Deployment<\/h4>\n\n\n\n<p>With our Kubernetes cluster fully operational, the next critical step is deploying the heart of the ERP system: <strong>Odoo<\/strong>. This guide explains how to <strong>deploy Odoo with Helm<\/strong>, set up PostgreSQL, and expose Odoo internally using Kubernetes Ingress. By doing so, you\u2019ll ensure a secure, scalable, and production-ready ERP environment.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83e\udde0 This article is part of our <a href=\"https:\/\/ahmednasr.info\/odoo-on-premise-architecture\">On-Premise Odoo Infrastructure Series<\/a>.<\/p>\n<\/blockquote>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-why-use-helm-to-deploy-odoo\">Why Use Helm to Deploy Odoo?<\/h4>\n\n\n\n<p>Helm simplifies the deployment process by turning complex Kubernetes configurations into manageable packages. More importantly, it helps teams:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reuse consistent deployment templates across environments<\/li>\n\n\n\n<li>Manage version control and configuration updates<\/li>\n\n\n\n<li>Automate rollbacks and rollouts as needed<\/li>\n<\/ul>\n\n\n\n<p>As a result, Helm allows faster, more reliable ERP deployments at scale. Furthermore, it standardizes deployments across multiple environments.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83d\udd17 <a href=\"https:\/\/helm.sh\/docs\/intro\/install\/\">Official Helm Installation Docs<\/a><\/p>\n<\/blockquote>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-1-install-helm\">Step 1: Install Helm<\/h4>\n\n\n\n<p>To get started, make sure Helm is installed on your local machine:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl https:\/\/raw.githubusercontent.com\/helm\/helm\/main\/scripts\/get-helm-3 | bash<\/code><\/pre>\n\n\n\n<p>This ensures you&#8217;re ready to manage your Kubernetes applications efficiently.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-2-create-a-namespace-for-odoo\">Step 2: Create a Namespace for Odoo<\/h4>\n\n\n\n<p>Next, define a separate namespace to logically isolate your Odoo deployment:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kubectl create namespace odoo<\/code><\/pre>\n\n\n\n<p>By isolating resources, you&#8217;ll improve manageability and security.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-3-prepare-a-custom-helm-chart-for-odoo\">Step 3: Prepare a Custom Helm Chart for Odoo<\/h4>\n\n\n\n<p>At this stage, you can use the Bitnami chart, or alternatively, create a simplified custom chart for better control. This chart defines your application\u2019s structure.<\/p>\n\n\n\n<p><strong>Chart.yaml<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apiVersion: v2\nname: odoo\nversion: 0.1.0<\/code><\/pre>\n\n\n\n<p><strong>values.yaml<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>replicaCount: 2\nimage:\n  repository: odoo\n  tag: 16\nservice:\n  type: ClusterIP\npostgresql:\n  enabled: true\n  postgresqlUsername: odoo\n  postgresqlPassword: odoo\n  postgresqlDatabase: odoo<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-4-deploy-odoo-with-helm\">Step 4: Deploy Odoo with Helm<\/h4>\n\n\n\n<p>Now use Helm to install Odoo into your Kubernetes cluster:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>helm install odoo .\/k8s-odoo --namespace odoo<\/code><\/pre>\n\n\n\n<p>This command performs three key actions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It launches two Odoo pods for redundancy.<\/li>\n\n\n\n<li>It creates a PostgreSQL StatefulSet for database persistence.<\/li>\n\n\n\n<li>It sets up a ClusterIP service for internal-only access.<\/li>\n<\/ul>\n\n\n\n<p>Consequently, your Odoo service is now logically segmented and resilient.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-5-set-up-internal-only-access-using-ingress\">Step 5: Set Up Internal-Only Access Using Ingress<\/h4>\n\n\n\n<p>To allow secure, internal browser access to Odoo, define an Ingress rule as shown below:<\/p>\n\n\n\n<p><strong>ingress.yaml<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apiVersion: networking.k8s.io\/v1\nkind: Ingress\nmetadata:\n  name: odoo\n  annotations:\n    nginx.ingress.kubernetes.io\/rewrite-target: \/\nspec:\n  rules:\n  - host: odoo.internal.local\n    http:\n      paths:\n      - path: \/\n        pathType: Prefix\n        backend:\n          service:\n            name: odoo\n            port:\n              number: 8069<\/code><\/pre>\n\n\n\n<p>Apply this rule using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kubectl apply -f ingress.yaml -n odoo<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83d\udd27 Additionally, ensure internal DNS or <code>\/etc\/hosts<\/code> correctly maps <code>odoo.internal.local<\/code> to your ingress controller\u2019s IP.<\/p>\n<\/blockquote>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-step-6-verify-access-to-odoo\">Step 6: Verify Access to Odoo<\/h4>\n\n\n\n<p>Once configuration is complete, open a browser on a machine inside your internal network and visit:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;odoo.internal.local<\/code><\/pre>\n\n\n\n<p>If everything is set up properly, you should see the Odoo login screen. From here, you can begin managing your ERP environment.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-what-s-next\">What\u2019s Next?<\/h4>\n\n\n\n<p>At this point, you\u2019ve successfully deployed Odoo using Helm inside Kubernetes. In the next and final article of this series, we\u2019ll focus on CI\/CD automation using GitLab pipelines to streamline your ERP development lifecycle.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83d\udd01 <a href=\"https:\/\/ahmed-nasr.info\/?p=1026\">Previous: Bootstrap Kubernetes for Odoo<\/a><br>\ud83d\udd01 <a href=\"https:\/\/ahmednasr.info\/post-5-odoo-ci-cd-gitlab\">Next: Automate Odoo CI\/CD with GitLab<\/a><\/p>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83d\udca1 Want to test this setup in your lab? <a href=\"https:\/\/github.com\/ahmednasr\/odoo-helm-chart\">Download our sample Helm chart<\/a> or <a href=\"https:\/\/ahmednasr.info\/contact\">get in touch<\/a> for assistance.<\/p>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>Introduction to Helm-Based Odoo Deployment With our Kubernetes cluster fully operational, the next critical step [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[30,31],"tags":[191,183,38,150,184,190,188,185,189,87,186,187,141],"class_list":["post-1028","post","type-post","status-publish","format-standard","hentry","category-erp","category-odoo","tag-bitnami-odoo","tag-deploy-odoo-with-helm","tag-erp-automation","tag-gitlab-ci-cd","tag-helm-charts","tag-helm-setup","tag-internal-access-ingress","tag-kubernetes-deployment","tag-kubernetes-namespace","tag-odoo-erp","tag-odoo-on-kubernetes","tag-postgresql-helm","tag-private-cloud-erp"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.8 (Yoast SEO v25.8) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deploy Odoo with Helm in Kubernetes Environments - AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646<\/title>\n<meta name=\"description\" content=\"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ahmed-nasr.info\/?p=1028\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access\" \/>\n<meta property=\"og:description\" content=\"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ahmed-nasr.info\/?p=1028\" \/>\n<meta property=\"og:site_name\" content=\"AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-01T04:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1078\" \/>\n\t<meta property=\"og:image:height\" content=\"990\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin.anm\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin.anm\" \/>\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:\/\/ahmed-nasr.info\/?p=1028#article\",\"isPartOf\":{\"@id\":\"https:\/\/ahmed-nasr.info\/?p=1028\"},\"author\":{\"name\":\"admin.anm\",\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998\"},\"headline\":\"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access\",\"datePublished\":\"2025-06-01T04:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ahmed-nasr.info\/?p=1028\"},\"wordCount\":443,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998\"},\"keywords\":[\"Bitnami Odoo\",\"Deploy Odoo with Helm\",\"ERP Automation\",\"GitLab CI\/CD\",\"Helm charts\",\"Helm setup\",\"Internal access Ingress\",\"Kubernetes deployment\",\"Kubernetes namespace\",\"Odoo ERP\",\"Odoo on Kubernetes\",\"PostgreSQL Helm\",\"Private Cloud ERP\"],\"articleSection\":[\"ERP\",\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ahmed-nasr.info\/?p=1028#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ahmed-nasr.info\/?p=1028\",\"url\":\"https:\/\/ahmed-nasr.info\/?p=1028\",\"name\":\"Deploy Odoo with Helm in Kubernetes Environments - AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646\",\"isPartOf\":{\"@id\":\"https:\/\/ahmed-nasr.info\/#website\"},\"datePublished\":\"2025-06-01T04:00:00+00:00\",\"description\":\"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.\",\"breadcrumb\":{\"@id\":\"https:\/\/ahmed-nasr.info\/?p=1028#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ahmed-nasr.info\/?p=1028\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ahmed-nasr.info\/?p=1028#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ahmed-nasr.info\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ahmed-nasr.info\/#website\",\"url\":\"https:\/\/ahmed-nasr.info\/\",\"name\":\"AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646\",\"description\":\"Envision. Lead. Execute\",\"publisher\":{\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ahmed-nasr.info\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998\",\"name\":\"admin.anm\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png\",\"contentUrl\":\"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png\",\"width\":1078,\"height\":990,\"caption\":\"admin.anm\"},\"logo\":{\"@id\":\"https:\/\/ahmed-nasr.info\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/ahmed-nasr.info\"],\"url\":\"https:\/\/ahmed-nasr.info\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Deploy Odoo with Helm in Kubernetes Environments - AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646","description":"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.","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:\/\/ahmed-nasr.info\/?p=1028","og_locale":"en_US","og_type":"article","og_title":"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access","og_description":"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.","og_url":"https:\/\/ahmed-nasr.info\/?p=1028","og_site_name":"AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646","article_published_time":"2025-06-01T04:00:00+00:00","og_image":[{"width":1078,"height":990,"url":"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png","type":"image\/png"}],"author":"admin.anm","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin.anm","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ahmed-nasr.info\/?p=1028#article","isPartOf":{"@id":"https:\/\/ahmed-nasr.info\/?p=1028"},"author":{"name":"admin.anm","@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998"},"headline":"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access","datePublished":"2025-06-01T04:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/ahmed-nasr.info\/?p=1028"},"wordCount":443,"commentCount":0,"publisher":{"@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998"},"keywords":["Bitnami Odoo","Deploy Odoo with Helm","ERP Automation","GitLab CI\/CD","Helm charts","Helm setup","Internal access Ingress","Kubernetes deployment","Kubernetes namespace","Odoo ERP","Odoo on Kubernetes","PostgreSQL Helm","Private Cloud ERP"],"articleSection":["ERP","Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ahmed-nasr.info\/?p=1028#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ahmed-nasr.info\/?p=1028","url":"https:\/\/ahmed-nasr.info\/?p=1028","name":"Deploy Odoo with Helm in Kubernetes Environments - AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646","isPartOf":{"@id":"https:\/\/ahmed-nasr.info\/#website"},"datePublished":"2025-06-01T04:00:00+00:00","description":"Learn how to deploy Odoo with Helm on Kubernetes, simplifying your ERP stack management and ensuring internal access.","breadcrumb":{"@id":"https:\/\/ahmed-nasr.info\/?p=1028#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ahmed-nasr.info\/?p=1028"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ahmed-nasr.info\/?p=1028#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ahmed-nasr.info\/"},{"@type":"ListItem","position":2,"name":"Deploying Odoo in Kubernetes \u2014 Helm, PostgreSQL &amp; Internal Access"}]},{"@type":"WebSite","@id":"https:\/\/ahmed-nasr.info\/#website","url":"https:\/\/ahmed-nasr.info\/","name":"AHMED NASRELDIN | \u0623\u062d\u0645\u062f \u0646\u0635\u0631\u0627\u0644\u062f\u064a\u0646","description":"Envision. Lead. Execute","publisher":{"@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ahmed-nasr.info\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/0febfc0570431674375c401bf0ade998","name":"admin.anm","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/image\/","url":"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png","contentUrl":"https:\/\/ahmed-nasr.info\/wp-content\/uploads\/2022\/12\/MADA_IMG2018_BW.png","width":1078,"height":990,"caption":"admin.anm"},"logo":{"@id":"https:\/\/ahmed-nasr.info\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/ahmed-nasr.info"],"url":"https:\/\/ahmed-nasr.info\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/posts\/1028","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1028"}],"version-history":[{"count":4,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/posts\/1028\/revisions"}],"predecessor-version":[{"id":1054,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=\/wp\/v2\/posts\/1028\/revisions\/1054"}],"wp:attachment":[{"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1028"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1028"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ahmed-nasr.info\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1028"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}