{"id":546,"date":"2024-12-05T01:06:05","date_gmt":"2024-12-04T22:06:05","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/"},"modified":"2024-12-05T01:06:05","modified_gmt":"2024-12-04T22:06:05","slug":"exploring-the-power-of-kubernetes-custom-resource-definitions","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/","title":{"rendered":"Exploring the Power of Kubernetes Custom Resource Definitions"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>Kubernetes, an open-source container orchestration platform, has revolutionized the way we deploy, manage, and scale applications. With its ability to automate the process of deploying containerized applications, it has become the go-to solution for many organizations looking to leverage cloud-native technologies. One of the most powerful features of Kubernetes is its extensibility, particularly through <strong>Custom Resource Definitions (CRDs)<\/strong>. This article delves into the capabilities and benefits of CRDs, showcasing how they empower developers and administrators to tailor Kubernetes to their specific needs.<\/p>\n<p><\/p>\n<h2>What are Custom Resource Definitions?<\/h2>\n<p><\/p>\n<p>At its core, Kubernetes is designed to manage objects such as Pods, Services, and Deployments. However, organizations often find that their use cases require additional resource types beyond the standard ones. This is where Custom Resource Definitions come into play.<\/p>\n<p><\/p>\n<p>CRDs allow developers to create their own custom resources, enabling Kubernetes to manage these resources just like built-in objects. By defining a CRD, you can extend the Kubernetes API and integrate your custom logic into the orchestration platform.<\/p>\n<p><\/p>\n<h2>Why Use Custom Resource Definitions?<\/h2>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Extensibility<\/strong>: One of the primary advantages of CRDs is their ability to extend the Kubernetes API. By creating custom resources, developers can tailor Kubernetes to suit unique application requirements, enabling them to manage complex workflows and data structures with ease.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Declarative API<\/strong>: Kubernetes promotes a declarative approach to application management. By utilizing CRDs, you can create resources that follow the same declarative pattern, making it easier to manage state and configuration.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Rich Ecosystem<\/strong>: CRDs are part of a larger ecosystem of Kubernetes resources. This means you can leverage existing Kubernetes tools and frameworks, such as Controllers, to manage your custom resources. This integration enhances the overall functionality and lifecycle management of your applications.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Community and Support<\/strong>: Given Kubernetes&#8217;s popularity, there is a robust community around it, and many developers are already leveraging CRDs. Resources and documentation are readily available from the <a href=\"https:\/\/kubernetes.io\/docs\/\">Kubernetes documentation<\/a> and various community forums, making it easier to find help and best practices.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>How to Create a Custom Resource Definition<\/h2>\n<p><\/p>\n<p>Creating a CRD is straightforward. Below are the key steps involved in defining and deploying a CRD in your Kubernetes cluster:<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Define the CRD Manifest<\/strong>: This includes specifying the API version, kind, metadata, and the specifications for the custom resource. Here&#8217;s a simple example of a CRD definition:<\/p>\n<p><\/p>\n<pre><code class=\"language-yaml\">apiVersion: apiextensions.k8s.io\/v1<br \/>\nkind: CustomResourceDefinition<br \/>\nmetadata:<br \/>\n  name: examples.mydomain.com<br \/>\nspec:<br \/>\n  group: mydomain.com<br \/>\n  versions:<br \/>\n  - name: v1<br \/>\n    served: true<br \/>\n    storage: true<br \/>\n    schema:<br \/>\n      openAPIV3Schema:<br \/>\n        type: object<br \/>\n        properties:<br \/>\n          spec:<br \/>\n            type: object<br \/>\n            properties:<br \/>\n              foo:<br \/>\n                type: string<br \/>\n  scope: Namespaced<br \/>\n  names:<br \/>\n    plural: examples<br \/>\n    singular: example<br \/>\n    kind: Example<br \/>\n    shortNames:<br \/>\n    - ex<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Deploy the CRD<\/strong>: Use the <code>kubectl apply<\/code> command to deploy your CRD to the Kubernetes API server:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">kubectl apply -f my-crd.yaml<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Create Custom Resources<\/strong>: Once the CRD is created, you can start defining custom resources that conform to the specifications outlined in the CRD.<\/p>\n<p><\/p>\n<pre><code class=\"language-yaml\">apiVersion: mydomain.com\/v1<br \/>\nkind: Example<br \/>\nmetadata:<br \/>\n  name: my-example<br \/>\nspec:<br \/>\n  foo: \"Hello, Kubernetes!\"<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Interact with Custom Resources<\/strong>: Just like any other Kubernetes object, you can create, read, update, or delete your custom resources using standard <code>kubectl<\/code> commands.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Use Cases for Custom Resource Definitions<\/h2>\n<p><\/p>\n<p>The potential applications of CRDs are nearly limitless. Here are a few common use cases where CRDs can greatly enhance Kubernetes functionality:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>\n<p><strong>Operator Framework<\/strong>: Developers can leverage CRDs to build Kubernetes Operators, which automate the management of complex applications and services. This is particularly useful for stateful applications like databases.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Custom Workflows<\/strong>: Businesses with unique workflows can define custom resources to manage specific tasks within their applications, thus streamlining deployment and operational processes.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Managing Configuration<\/strong>: CRDs can be used to represent complex configurations or application metadata, allowing for better management of settings and environment variables.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Kubernetes Custom Resource Definitions are a powerful feature that enables developers to extend Kubernetes functionality without altering its core. By utilizing CRDs, organizations can build tailored solutions that meet their specific requirements, automate processes, and manage complex application architectures effectively.<\/p>\n<p><\/p>\n<p>As Kubernetes continues to evolve, integrating CRDs into your workflows is an excellent way to harness the full power of this container orchestration platform. To learn more about getting started with Kubernetes and CRDs, check out the comprehensive <a href=\"https:\/\/kubernetes.io\/docs\/\">Kubernetes documentation<\/a>.<\/p>\n<p><\/p>\n<p>By employing CRDs, you can not only enhance your Kubernetes experience but also transform the way you build and manage applications in a cloud-native landscape. Get ahead of the curve\u2014adopt Custom Resource Definitions today!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>Kubernetes, an open-source container orchestration platform, has revolutionized the way we deploy, manage, and scale applications. With its ability to automate the process of deploying containerized applications, it has become the go-to solution for many organizations looking to leverage cloud-native technologies. One of the most powerful features of Kubernetes is its extensibility, particularly through Custom [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":547,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[213],"tags":[240,242,220,217,221,241],"class_list":["post-546","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kubernetes","tag-custom","tag-definitions","tag-exploring","tag-kubernetes","tag-power","tag-resource","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Exploring the Power of Kubernetes Custom Resource Definitions - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Exploring the Power of Kubernetes Custom Resource Definitions %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploring the Power of Kubernetes Custom Resource Definitions\" \/>\n<meta property=\"og:description\" content=\"Exploring the Power of Kubernetes Custom Resource Definitions %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-04T22:06:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2221\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Exploring the Power of Kubernetes Custom Resource Definitions\",\"datePublished\":\"2024-12-04T22:06:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/\"},\"wordCount\":671,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png\",\"keywords\":[\"Custom\",\"Definitions\",\"Exploring\",\"Kubernetes\",\"Power\",\"Resource\"],\"articleSection\":[\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/\",\"name\":\"Exploring the Power of Kubernetes Custom Resource Definitions - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png\",\"datePublished\":\"2024-12-04T22:06:05+00:00\",\"description\":\"Exploring the Power of Kubernetes Custom Resource Definitions %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png\",\"width\":1024,\"height\":1024,\"caption\":\"Custom Resource Definitions (CRDs)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-kubernetes-custom-resource-definitions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploring the Power of Kubernetes Custom Resource Definitions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Exploring the Power of Kubernetes Custom Resource Definitions - WafaTech Blogs","description":"Exploring the Power of Kubernetes Custom Resource Definitions %","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:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/","og_locale":"en_US","og_type":"article","og_title":"Exploring the Power of Kubernetes Custom Resource Definitions","og_description":"Exploring the Power of Kubernetes Custom Resource Definitions %","og_url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2024-12-04T22:06:05+00:00","og_image":[{"width":2221,"height":482,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","type":"image\/webp"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Exploring the Power of Kubernetes Custom Resource Definitions","datePublished":"2024-12-04T22:06:05+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/"},"wordCount":671,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png","keywords":["Custom","Definitions","Exploring","Kubernetes","Power","Resource"],"articleSection":["Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/","url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/","name":"Exploring the Power of Kubernetes Custom Resource Definitions - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png","datePublished":"2024-12-04T22:06:05+00:00","description":"Exploring the Power of Kubernetes Custom Resource Definitions %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png","width":1024,"height":1024,"caption":"Custom Resource Definitions (CRDs)"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-kubernetes-custom-resource-definitions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Exploring the Power of Kubernetes Custom Resource Definitions"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Exploring-the-Power-of-Kubernetes-Custom-Resource-Definitions.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/546","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=546"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/546\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/547"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}