{"id":3099,"date":"2025-07-19T14:36:46","date_gmt":"2025-07-19T11:36:46","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/"},"modified":"2025-07-19T14:36:46","modified_gmt":"2025-07-19T11:36:46","slug":"mastering-secrets-management-in-kubernetes-with-helm","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/","title":{"rendered":"Mastering Secrets Management in Kubernetes with Helm"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>In today&#8217;s cloud-native ecosystem, securing sensitive data is crucial. Kubernetes, the leading container orchestration platform, offers a robust framework for deploying and managing applications, but handling secrets efficiently can be a challenge. This article discusses how to master secrets management in Kubernetes using Helm, a powerful package manager for Kubernetes.<\/p>\n<p><\/p>\n<h2>Understanding Kubernetes Secrets<\/h2>\n<p><\/p>\n<p>Kubernetes Secrets are designed to store sensitive information, such as passwords, OAuth tokens, and SSH keys, securely. Unlike ConfigMaps, which store non-sensitive data, secrets encrypt data at rest and can be used for application deployments without exposing sensitive information directly in your applications\u2019 configuration files.<\/p>\n<p><\/p>\n<h3>Why Use Secrets?<\/h3>\n<p><\/p>\n<ol><\/p>\n<li><strong>Security<\/strong>: Secrets allow you to avoid hardcoding sensitive information in your application code or container images.<\/li>\n<p><\/p>\n<li><strong>Ease of Management<\/strong>: Centralized management of sensitive data allows for better changes and revocation.<\/li>\n<p><\/p>\n<li><strong>Integration<\/strong>: Kubernetes Secrets seamlessly integrate with your applications running in the cluster.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Challenges in Managing Secrets<\/h2>\n<p><\/p>\n<p>While Kubernetes Secrets add a layer of security, managing them effectively presents some challenges:<\/p>\n<p><\/p>\n<ul><\/p>\n<li><strong>Complexity in Handling<\/strong>: Developers often find it complex to manage secrets in different environments (development, testing, production).<\/li>\n<p><\/p>\n<li><strong>Visibility<\/strong>: Sometimes, there is a lack of visibility into how secrets are being used and modified.<\/li>\n<p><\/p>\n<li><strong>Versioning<\/strong>: Keeping track of secret versions can be cumbersome, especially in large projects.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Introducing Helm<\/h2>\n<p><\/p>\n<p>Helm is a widely adopted package manager for Kubernetes that simplifies the deployment and management of applications. By utilizing Helm, developers can manage Kubernetes resources more confidently, including secrets.<\/p>\n<p><\/p>\n<h3>How Helm Enhances Secrets Management<\/h3>\n<p><\/p>\n<ol><\/p>\n<li><strong>Templating<\/strong>: Helm allows you to define templates for your Kubernetes manifests. This means you can integrate secrets seamlessly into your Helm charts.<\/li>\n<p><\/p>\n<li><strong>Values Files<\/strong>: You can specify secrets in a values file, allowing for dynamic configuration based on the environment (e.g., dev, staging, production).<\/li>\n<p><\/p>\n<li><strong>Hooks for Secrets Management<\/strong>: Helm provides lifecycle hooks that allow for automatic deployment of secrets at the appropriate lifecycle stage.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Step-by-Step Guide to Managing Secrets with Helm<\/h2>\n<p><\/p>\n<p>Now that we understand the relevance of Kubernetes Secrets and Helm, let\u2019s walk through the steps to manage secrets effectively.<\/p>\n<p><\/p>\n<h3>Step 1: Install Helm<\/h3>\n<p><\/p>\n<p>If you haven\u2019t installed Helm yet, follow these steps:<\/p>\n<p><\/p>\n<p>bash<br \/>\ncurl <a href=\"https:\/\/raw.githubusercontent.com\/helm\/helm\/master\/scripts\/get-helm-3\">https:\/\/raw.githubusercontent.com\/helm\/helm\/master\/scripts\/get-helm-3<\/a> | bash<\/p>\n<p><\/p>\n<h3>Step 2: Create a Helm Chart<\/h3>\n<p><\/p>\n<p>To create a new Helm chart, use:<\/p>\n<p><\/p>\n<p>bash<br \/>\nhelm create my-app<\/p>\n<p><\/p>\n<p>This command will generate a basic directory structure for your application.<\/p>\n<p><\/p>\n<h3>Step 3: Store Secrets Securely<\/h3>\n<p><\/p>\n<p>Create a <code>secret.yaml<\/code> file inside the <code>templates<\/code> directory of your chart. You can use placeholders for the sensitive information. For instance:<\/p>\n<p><\/p>\n<p>yaml<br \/>\napiVersion: v1<br \/>\nkind: Secret<br \/>\nmetadata:<br \/>\nname: my-app-secret<br \/>\ntype: Opaque<br \/>\ndata:<br \/>\npassword: {{ .Values.secrets.password | b64enc | quote }}<\/p>\n<p><\/p>\n<h3>Step 4: Define Values<\/h3>\n<p><\/p>\n<p>In the <code>values.yaml<\/code> file, define your secrets:<\/p>\n<p><\/p>\n<p>yaml<br \/>\nsecrets:<br \/>\npassword: my-super-secret-password<\/p>\n<p><\/p>\n<h3>Step 5: Install the Chart<\/h3>\n<p><\/p>\n<p>You can install the chart with the command:<\/p>\n<p><\/p>\n<p>bash<br \/>\nhelm install my-app .\/my-app<\/p>\n<p><\/p>\n<h3>Step 6: Accessing the Secrets<\/h3>\n<p><\/p>\n<p>Your application can access these secrets via environment variables or volume mounts. For instance, access the secret as an environment variable:<\/p>\n<p><\/p>\n<p>yaml<br \/>\nenv:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>name: DB_PASSWORD<br \/>\nvalueFrom:<br \/>\nsecretKeyRef:<br \/>\nname: my-app-secret<br \/>\nkey: password<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Managing and Updating Secrets<\/h2>\n<p><\/p>\n<p>Updating secrets is straightforward with Helm. You can modify the values in <code>values.yaml<\/code>, and update your deployment with:<\/p>\n<p><\/p>\n<p>bash<br \/>\nhelm upgrade my-app .\/my-app<\/p>\n<p><\/p>\n<p>To ensure secrets don&#8217;t leak into logs, remember to employ best practices for handling secrets, both within your code and CI\/CD pipelines.<\/p>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Effective secrets management is a vital part of securing your applications in Kubernetes. By leveraging Helm, you can simplify the process of managing secrets while ensuring a high level of security and ease of use. Mastering these tools will position you well in the rapidly evolving landscape of cloud-native applications.<\/p>\n<p><\/p>\n<p>For more insightful articles on Kubernetes and DevOps, stay tuned to WafaTech Blogs. Happy coding!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s cloud-native ecosystem, securing sensitive data is crucial. Kubernetes, the leading container orchestration platform, offers a robust framework for deploying and managing applications, but handling secrets efficiently can be a challenge. This article discusses how to master secrets management in Kubernetes using Helm, a powerful package manager for Kubernetes. Understanding Kubernetes Secrets Kubernetes Secrets [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":3100,"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":[363,217,239,200,676],"class_list":["post-3099","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kubernetes","tag-helm","tag-kubernetes","tag-management","tag-mastering","tag-secrets","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.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Mastering Secrets Management in Kubernetes with Helm - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Mastering Secrets Management in Kubernetes with Helm %\" \/>\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\/mastering-secrets-management-in-kubernetes-with-helm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering Secrets Management in Kubernetes with Helm\" \/>\n<meta property=\"og:description\" content=\"Mastering Secrets Management in Kubernetes with Helm %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/\" \/>\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-07-19T11:36:46+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=\"3 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\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Mastering Secrets Management in Kubernetes with Helm\",\"datePublished\":\"2025-07-19T11:36:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/\"},\"wordCount\":621,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png\",\"keywords\":[\"Helm\",\"Kubernetes\",\"Management\",\"Mastering\",\"Secrets\"],\"articleSection\":[\"Kubernetes\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/\",\"name\":\"Mastering Secrets Management in Kubernetes with Helm - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png\",\"datePublished\":\"2025-07-19T11:36:46+00:00\",\"description\":\"Mastering Secrets Management in Kubernetes with Helm %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png\",\"width\":1024,\"height\":1024,\"caption\":\"Helm Secrets Management\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/devops\\\/kubernetes\\\/mastering-secrets-management-in-kubernetes-with-helm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mastering Secrets Management in Kubernetes with Helm\"}]},{\"@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":"Mastering Secrets Management in Kubernetes with Helm - WafaTech Blogs","description":"Mastering Secrets Management in Kubernetes with Helm %","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\/mastering-secrets-management-in-kubernetes-with-helm\/","og_locale":"en_US","og_type":"article","og_title":"Mastering Secrets Management in Kubernetes with Helm","og_description":"Mastering Secrets Management in Kubernetes with Helm %","og_url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-07-19T11:36:46+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Mastering Secrets Management in Kubernetes with Helm","datePublished":"2025-07-19T11:36:46+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/"},"wordCount":621,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png","keywords":["Helm","Kubernetes","Management","Mastering","Secrets"],"articleSection":["Kubernetes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/","url":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/","name":"Mastering Secrets Management in Kubernetes with Helm - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png","datePublished":"2025-07-19T11:36:46+00:00","description":"Mastering Secrets Management in Kubernetes with Helm %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png","width":1024,"height":1024,"caption":"Helm Secrets Management"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/devops\/kubernetes\/mastering-secrets-management-in-kubernetes-with-helm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Mastering Secrets Management in Kubernetes with Helm"}]},{"@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\/07\/Mastering-Secrets-Management-in-Kubernetes-with-Helm.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/3099","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=3099"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/3099\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/3100"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=3099"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=3099"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=3099"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}