{"id":2087,"date":"2025-04-10T09:36:17","date_gmt":"2025-04-10T06:36:17","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/"},"modified":"2025-04-10T09:36:17","modified_gmt":"2025-04-10T06:36:17","slug":"exploring-the-power-of-custom-resource-definitions-in-kubernetes","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/","title":{"rendered":"Exploring the Power of Custom Resource Definitions in Kubernetes"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>As organizations increasingly adopt cloud-native technologies to streamline their operations and enhance scalability, Kubernetes has become the de facto standard for container orchestration. One of the standout features of Kubernetes is its extensibility, enabling developers to customize its behavior to meet specific application needs. At the heart of this customization lies the powerful concept of Custom Resource Definitions (CRDs).<\/p>\n<p><\/p>\n<h2>What are Custom Resource Definitions?<\/h2>\n<p><\/p>\n<p>Custom Resource Definitions are a way to extend Kubernetes&#8217;s capabilities by allowing users to create their own API resources. This means that developers can define new types of resources within the Kubernetes API, just like the built-in resources like Pods, Services, and Deployments. CRDs enable teams to manage and orchestrate complex workflows tailored to their applications, effectively bridging the gap between infrastructure and application requirements.<\/p>\n<p><\/p>\n<h3>Key Benefits of CRDs<\/h3>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Extensibility<\/strong>: CRDs allow you to express the characteristics of your application&#8217;s resources in a way that fits your specific domain. This extensibility means that your Kubernetes clusters can become truly focused on your business requirements.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Unified Management<\/strong>: By using CRDs, teams can manage both routine Kubernetes objects and custom objects from a single interface. This unification simplifies operations and provides a consistent way to manage the lifecycle of different resources.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Enhanced Automation<\/strong>: CRDs work seamlessly with Kubernetes&#8217; native capabilities, allowing you to leverage controller patterns. This means that you can automate the management of your custom resources, making the deployment and scaling of applications more efficient.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>API-Driven Development<\/strong>: CRDs are inherently part of Kubernetes&#8217; API structure, enabling developers to use standard tools, like <code>kubectl<\/code>, to interact with custom resources. This standardization means that teams can integrate CRDs into their existing workflows without needing to adopt new tools or processes.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>How to Create a Custom Resource Definition<\/h3>\n<p><\/p>\n<p>Creating a CRD in Kubernetes is a straightforward process, but it requires understanding the structure of YAML files that define the resource&#8217;s attributes. Here\u2019s a simple example to illustrate the creation of a custom resource for managing a fictional resource called <code>Database<\/code>.<\/p>\n<p><\/p>\n<pre><code class=\"language-yaml\">apiVersion: apiextensions.k8s.io\/v1<br \/>\nkind: CustomResourceDefinition<br \/>\nmetadata:<br \/>\n  name: databases.mycompany.com<br \/>\nspec:<br \/>\n  group: mycompany.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                version:<br \/>\n                  type: string<br \/>\n                size:<br \/>\n                  type: string<br \/>\n                storageClass:<br \/>\n                  type: string<br \/>\n  scope: Namespaced<br \/>\n  names:<br \/>\n    plural: databases<br \/>\n    singular: database<br \/>\n    kind: Database<\/code><\/pre>\n<p><\/p>\n<h3>Registering and Interacting with the CRD<\/h3>\n<p><\/p>\n<p>Once defined, you&#8217;ll need to apply the CRD to your Kubernetes cluster using <code>kubectl<\/code>:<\/p>\n<p><\/p>\n<pre><code class=\"language-sh\">kubectl apply -f database_crd.yaml<\/code><\/pre>\n<p><\/p>\n<p>You can then create instances of your new resource by defining a Custom Resource (CR):<\/p>\n<p><\/p>\n<pre><code class=\"language-yaml\">apiVersion: mycompany.com\/v1<br \/>\nkind: Database<br \/>\nmetadata:<br \/>\n  name: my-database<br \/>\nspec:<br \/>\n  version: \"PostgreSQL 13\"<br \/>\n  size: \"medium\"<br \/>\n  storageClass: \"ssd\"<\/code><\/pre>\n<p><\/p>\n<p>This CR can then be applied to the cluster:<\/p>\n<p><\/p>\n<pre><code class=\"language-sh\">kubectl apply -f my_database.yaml<\/code><\/pre>\n<p><\/p>\n<h3>Building a Controller<\/h3>\n<p><\/p>\n<p>To manage the lifecycle of your new <code>Database<\/code> resource, you\u2019ll likely want to develop a controller. This controller watches for the changes to <code>Database<\/code> resources and ensures that the intended state matches the actual state of the system. Using tools like the Operator SDK or Kubebuilder can significantly simplify the process of building and deploying such controllers. <\/p>\n<p><\/p>\n<h3>Real-World Use Cases<\/h3>\n<p><\/p>\n<p>Custom Resource Definitions offer endless possibilities across industries. Here are a few illustrative use cases:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>\n<p><strong>Operators<\/strong>: You can create operators that manage complex applications such as databases, message queues, or even machine learning models, automating tasks like backups, scaling, and system updates.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Application-Specific Resources<\/strong>: In a microservices architecture, you might need to define resources unique to your application, such as an <code>API<\/code> resource that encapsulates endpoints and configurations.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Service Mesh<\/strong>: CRDs are often utilized in service mesh implementations to define routing rules, security policies, and telemetry specifications without modifying core Kubernetes resources.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h3>Conclusion<\/h3>\n<p><\/p>\n<p>In summary, Custom Resource Definitions in Kubernetes are a powerful feature that extends the platform&#8217;s capabilities, allowing for tailored resource management aligned with specific application needs. They bring numerous benefits, from enhanced automation to unified management, enabling organizations to fully leverage the power of Kubernetes in their cloud-native journeys. As you explore Kubernetes further, consider how CRDs can help you build smarter, more efficient applications that cater precisely to your organizational requirements. <\/p>\n<p><\/p>\n<p>Embrace the extensibility of Kubernetes, and start creating your own custom resources today!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>As organizations increasingly adopt cloud-native technologies to streamline their operations and enhance scalability, Kubernetes has become the de facto standard for container orchestration. One of the standout features of Kubernetes is its extensibility, enabling developers to customize its behavior to meet specific application needs. At the heart of this customization lies the powerful concept of [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2088,"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-2087","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 Custom Resource Definitions in Kubernetes - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Exploring the Power of Custom Resource Definitions in 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:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/\" \/>\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 Custom Resource Definitions in Kubernetes\" \/>\n<meta property=\"og:description\" content=\"Exploring the Power of Custom Resource Definitions in Kubernetes %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/\" \/>\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=\"2025-04-10T06:36:17+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-custom-resource-definitions-in-kubernetes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Exploring the Power of Custom Resource Definitions in Kubernetes\",\"datePublished\":\"2025-04-10T06:36:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/\"},\"wordCount\":628,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.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-custom-resource-definitions-in-kubernetes\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/\",\"name\":\"Exploring the Power of Custom Resource Definitions in Kubernetes - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png\",\"datePublished\":\"2025-04-10T06:36:17+00:00\",\"description\":\"Exploring the Power of Custom Resource Definitions in Kubernetes %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png\",\"width\":1024,\"height\":1024,\"caption\":\"Resource Definitions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploring the Power of Custom Resource Definitions in Kubernetes\"}]},{\"@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 Custom Resource Definitions in Kubernetes - WafaTech Blogs","description":"Exploring the Power of Custom Resource Definitions in 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:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/","og_locale":"en_US","og_type":"article","og_title":"Exploring the Power of Custom Resource Definitions in Kubernetes","og_description":"Exploring the Power of Custom Resource Definitions in Kubernetes %","og_url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-04-10T06:36:17+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-custom-resource-definitions-in-kubernetes\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Exploring the Power of Custom Resource Definitions in Kubernetes","datePublished":"2025-04-10T06:36:17+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/"},"wordCount":628,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/04\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.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-custom-resource-definitions-in-kubernetes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/","url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/","name":"Exploring the Power of Custom Resource Definitions in Kubernetes - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/04\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png","datePublished":"2025-04-10T06:36:17+00:00","description":"Exploring the Power of Custom Resource Definitions in Kubernetes %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/04\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/04\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png","width":1024,"height":1024,"caption":"Resource Definitions"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/exploring-the-power-of-custom-resource-definitions-in-kubernetes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Exploring the Power of Custom Resource Definitions in Kubernetes"}]},{"@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\/2025\/04\/Exploring-the-Power-of-Custom-Resource-Definitions-in-Kubernetes.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/2087","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=2087"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/2087\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/2088"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=2087"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=2087"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=2087"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}