{"id":37181,"date":"2026-03-31T13:01:18","date_gmt":"2026-03-31T17:01:18","guid":{"rendered":"https:\/\/www.lpi.org\/articles\/\/"},"modified":"2026-04-07T10:58:31","modified_gmt":"2026-04-07T14:58:31","slug":"devops-tools-introduction-11-kubernetes-package-management","status":"publish","type":"post","link":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/","title":{"rendered":"DevOps Tools Introduction #11: Kubernetes Package Management"},"content":{"rendered":"<p>Kubernetes consists of many layers and features, with a correspondingly complex declarative set of administration rules. Although it\u2019s important to understand Kubernetes itself, DevOps candidates should also master the most common open source projects that have jumped into the complexity gap to make Kubernetes administration easier. The LPI DevOps Tools Engineer certification expects you to have some familiarity with Helm, Kustomize, Flux CD, and Argo CD.<\/p>\n<h2>Helm<\/h2>\n<p>One of the most important tools to know for managing Kubernetes applications is <em><a href=\"https:\/\/helm.sh\/\">Helm<\/a><\/em>, a package manager that simplifies the definition, installation, and lifecycle management of applications.<br \/>\nInstalling Helm is simple and straightforward, with multiple options depending on your system and preferences. On Debian-based and Red Hat-based Linux distributions, the easiest method is to use the <a href=\"https:\/\/helm.sh\/docs\/intro\/install\">official installation script<\/a>, which automates the entire setup.<\/p>\n<h3>What is a Chart?<\/h3>\n<p>The fundamental building block in Helm is the <em><a href=\"https:\/\/helm.sh\/docs\/topics\/charts\">Chart<\/a><\/em>, a structured collection of files that describe a set of Kubernetes resources. It includes templates, default configurations, and metadata required to deploy an application consistently across environments.<\/p>\n<p>A Release represents a deployed instance of a Chart within a Kubernetes cluster. Each time a <a href=\"https:\/\/helm.sh\/docs\/intro\/using_helm\/\">Chart is installed<\/a>, Helm creates a new Release, assigning it a unique name and tracking its state. This allows multiple instances of the same application to coexist, each with potentially different configurations.<\/p>\n<p>Values define how a Chart is customized during deployment. These are typically stored in a file named <code>values.yaml<\/code>, which provides default parameters for the Chart templates.<\/p>\n<p>Users can override these values at installation or upgrade time, enabling flexible configuration without modifying the underlying templates. This separation of templates and values is central to Helm\u2019s design, promoting reuse and consistency.<\/p>\n<h3>Installation, Upgrading, and Uninstalling Software using Helm<\/h3>\n<p>Helm provides a straightforward workflow for managing application lifecycles. The <code>helm install<\/code> command deploys a Chart into a cluster, creating a new Release.<\/p>\n<p>After setting up Helm, the next step is to add a <a href=\"https:\/\/artifacthub.io\/\">Chart repository<\/a>. You can explore available repositories on Artifact Hub, which hosts a wide collection of ready-to-use Helm Charts. Then add a repository to your search options through:<\/p>\n<pre>$ helm repo add bitnami \\\r\nhttps:\/\/charts.bitnami.com\/bitnami<\/pre>\n<p>Once the repository is added, you can search for available Charts within it:<\/p>\n<pre>$ helm search repo bitnami<\/pre>\n<p>To deploy an application using Helm, use the helm install command. One of the simplest approaches is to install a Chart from the Bitnami repository.<\/p>\n<p>First, update your local repository index to ensure you have the latest Chart definitions:<\/p>\n<pre>$ helm repo update<\/pre>\n<p>Then install a Chart using a generated Release name. During installation, Helm renders the templates using the provided values and applies the resulting Kubernetes manifests. The following example installs the MySQL database engine:<\/p>\n<pre>$ helm install bitnami\/mysql<\/pre>\n<p>This process downloads the selected Chart, renders its templates with default values, and deploys the application into your Kubernetes cluster as a new Release.<\/p>\n<p>To upgrade an existing application, use <code>helm upgrade<\/code>. This command incrementally applies changes, such as updating container images, modifying configurations, or enabling new features. Helm maintains a revision history for each Release, which enables rollback to previous states if needed.<\/p>\n<p>To inspect deployed applications, <code>helm list<\/code> provides an overview of all Releases within a namespace or across the cluster. This helps administrators track the current state and identify deployed components.<\/p>\n<p>When an application is no longer needed, <code>helm uninstall<\/code> removes the Release and its associated Kubernetes resources. This ensures a clean removal without leaving orphaned objects in the cluster.<\/p>\n<p>The helm site provides a handy <a href=\"https:\/\/helm.sh\/docs\/intro\/cheatsheet\">cheat sheet<\/a> for quick reference.<\/p>\n<h3>Specifying Custom Values with values.yaml<\/h3>\n<p>Customization in Helm is primarily achieved through the <code>values.yaml<\/code> file. This file defines default configuration parameters such as replica counts, image versions, service types, and resource limits. By editing this file or providing alternative values during deployment, users can tailor the application to specific environments like development, staging, or production.<\/p>\n<p>Overrides can be supplied directly via command-line flags or through additional YAML files. This mechanism allows teams to maintain a base configuration while applying environment-specific adjustments. The templating engine processes these values dynamically, injecting them into Kubernetes manifests at deployment time.<\/p>\n<p>This approach promotes modularity and reduces duplication, as the same Chart can be reused across multiple contexts with different configurations.<\/p>\n<h2>Kustomize<\/h2>\n<p><em><a href=\"https:\/\/kustomize.io\/\">Kustomize<\/a><\/em> is another tool for managing Kubernetes configurations, following a different philosophy from that of Helm. Instead of templating, Kustomize focuses on layering and patching existing YAML manifests. It allows users to define a base configuration and apply overlays to modify specific fields without altering the original files.<\/p>\n<p>Kustomize is built into Kubernetes through the standard <code><a href=\"https:\/\/kubernetes.io\/docs\/tasks\/manage-kubernetes-objects\/kustomization\/\">kubectl<\/a><\/code> command, making it readily available without additional installation. It is particularly useful for teams that prefer declarative configuration management without introducing the extra conceptual layer of a templating language.<\/p>\n<p>While Helm emphasizes packaging and parameterization, Kustomize emphasizes composition and transformation. Both tools can coexist in modern workflows, depending on the use case.<\/p>\n<h2>Flux CD and Argo CD<\/h2>\n<p><a href=\"https:\/\/fluxcd.io\/\">Flux CD<\/a> and <a href=\"https:\/\/argoproj.github.io\/cd\/\">Argo CD<\/a> are GitOps tools that automate the deployment and synchronization of Kubernetes resources based on Git repositories. They extend the concepts of Helm and Kustomize by introducing continuous delivery practices.<\/p>\n<p>In a <a href=\"https:\/\/www.redhat.com\/en\/topics\/devops\/what-is-gitops\">GitOps model<\/a>, the desired state of the cluster is stored in version-controlled repositories. Flux CD and Argo CD continuously monitor these repositories and reconcile the cluster state to match the declared configuration. This ensures consistency, traceability, and automated recovery from drift.<\/p>\n<p>Argo CD provides a rich user interface and detailed visibility into application states, while Flux CD is more lightweight and integrates deeply with Kubernetes primitives. Both tools support Helm Charts and Kustomize configurations, enabling flexible deployment strategies.<\/p>\n<p>By combining Helm with GitOps tools, teams can achieve fully automated, reproducible, and auditable application delivery pipelines.<\/p>\n<p>As you deepen your understanding of Kubernetes application management and the common tools used to perform it, the <a href=\"https:\/\/learning.lpi.org\/en\/learning-materials\/701-200\/\">official Learning Material for the DevOps Tools Engineer<\/a> certification can serve as a valuable reference. It is freely available and provides structured coverage of topics such as Charts, Releases, Values, and application lifecycle management, helping to reinforce and organize your studies.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/www.lpi.org\/blog\/2026\/03\/25\/devops-tools-introduction-10-basic-kubernetes-operations\/\">&lt;&lt; Read the previous article of this series<\/a> | <a href=\"https:\/\/www.lpi.org\/blog\/2026\/04\/07\/devops-tools-introduction-12-cloud-native-security\/\">Read the next article of this series &gt;&gt;<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Kubernetes consists of many layers and f &#8230; <a href=\"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/\" class=\"button-link\">Read more<\/a><\/p>\n","protected":false},"author":66,"featured_media":37182,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"country":[],"language":[304],"ppma_author":[540,571],"class_list":["post-37181","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-none","language-english"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>DevOps Tools Introduction #11: Kubernetes Package Management - Linux Professional Institute (LPI)<\/title>\n<meta name=\"description\" content=\"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/\" \/>\n<meta property=\"og:locale\" content=\"zh_TW\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DevOps Tools Introduction #11: Kubernetes Package Management\" \/>\n<meta property=\"og:description\" content=\"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/\" \/>\n<meta property=\"og:site_name\" content=\"Linux Professional Institute (LPI)\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LPIConnect\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-31T17:01:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-07T14:58:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"994\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fabian Thorns, Uir\u00e1 Ribeiro\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:site\" content=\"@lpiconnect\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fabian Thorns\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9810\u4f30\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/\"},\"author\":{\"name\":\"Fabian Thorns\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\"},\"headline\":\"DevOps Tools Introduction #11: Kubernetes Package Management\",\"datePublished\":\"2026-03-31T17:01:18+00:00\",\"dateModified\":\"2026-04-07T14:58:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/\"},\"wordCount\":1003,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg\",\"articleSection\":[\"- None -\"],\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/\",\"name\":\"DevOps Tools Introduction #11: Kubernetes Package Management - Linux Professional Institute (LPI)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg\",\"datePublished\":\"2026-03-31T17:01:18+00:00\",\"dateModified\":\"2026-04-07T14:58:31+00:00\",\"description\":\"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#breadcrumb\"},\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg\",\"width\":1440,\"height\":994,\"caption\":\"DevOps Tools Introduction #11: Kubernetes Package Management\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/blog\\\/2026\\\/03\\\/31\\\/devops-tools-introduction-11-kubernetes-package-management\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps Tools Introduction #11: Kubernetes Package Management\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#website\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/\",\"name\":\"Linux Professional Institute (LPI)\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-TW\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#organization\",\"name\":\"Linux Professional Institute (LPI)\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/logo.png\",\"width\":496,\"height\":175,\"caption\":\"Linux Professional Institute (LPI)\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/LPIConnect\",\"https:\\\/\\\/x.com\\\/lpiconnect\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/35136\",\"https:\\\/\\\/www.instagram.com\\\/lpi_org\\\/\",\"https:\\\/\\\/fosstodon.org\\\/@LPI\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/zh-hant\\\/#\\\/schema\\\/person\\\/87a340eca845e18d801667fd11e6937c\",\"name\":\"Fabian Thorns\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074\",\"url\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lpi.org\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/cropped-fabian-thorns-1920px-96x96.jpg\",\"caption\":\"Fabian Thorns\"},\"description\":\"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org).\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"DevOps Tools Introduction #11: Kubernetes Package Management - Linux Professional Institute (LPI)","description":"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.","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:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/","og_locale":"zh_TW","og_type":"article","og_title":"DevOps Tools Introduction #11: Kubernetes Package Management","og_description":"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.","og_url":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/","og_site_name":"Linux Professional Institute (LPI)","article_publisher":"https:\/\/www.facebook.com\/LPIConnect","article_published_time":"2026-03-31T17:01:18+00:00","article_modified_time":"2026-04-07T14:58:31+00:00","og_image":[{"width":1440,"height":994,"url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg","type":"image\/jpeg"}],"author":"Fabian Thorns, Uir\u00e1 Ribeiro","twitter_card":"summary_large_image","twitter_creator":"@lpiconnect","twitter_site":"@lpiconnect","twitter_misc":{"\u4f5c\u8005:":"Fabian Thorns","\u9810\u4f30\u95b1\u8b80\u6642\u9593":"5 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#article","isPartOf":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/"},"author":{"name":"Fabian Thorns","@id":"https:\/\/www.lpi.org\/zh-hant\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c"},"headline":"DevOps Tools Introduction #11: Kubernetes Package Management","datePublished":"2026-03-31T17:01:18+00:00","dateModified":"2026-04-07T14:58:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/"},"wordCount":1003,"commentCount":0,"publisher":{"@id":"https:\/\/www.lpi.org\/zh-hant\/#organization"},"image":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg","articleSection":["- None -"],"inLanguage":"zh-TW","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/","url":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/","name":"DevOps Tools Introduction #11: Kubernetes Package Management - Linux Professional Institute (LPI)","isPartOf":{"@id":"https:\/\/www.lpi.org\/zh-hant\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#primaryimage"},"image":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg","datePublished":"2026-03-31T17:01:18+00:00","dateModified":"2026-04-07T14:58:31+00:00","description":"Kubernetes package management: Helm, Kustomize, and GitOps tools like Argo CD and Flux CD for automated deployments.","breadcrumb":{"@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#breadcrumb"},"inLanguage":"zh-TW","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/"]}]},{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#primaryimage","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/03\/article-DevOps-Tools-Engineer-v2-Introduction-02-11.jpg","width":1440,"height":994,"caption":"DevOps Tools Introduction #11: Kubernetes Package Management"},{"@type":"BreadcrumbList","@id":"https:\/\/www.lpi.org\/zh-hant\/blog\/2026\/03\/31\/devops-tools-introduction-11-kubernetes-package-management\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lpi.org\/zh-hant\/"},{"@type":"ListItem","position":2,"name":"DevOps Tools Introduction #11: Kubernetes Package Management"}]},{"@type":"WebSite","@id":"https:\/\/www.lpi.org\/zh-hant\/#website","url":"https:\/\/www.lpi.org\/zh-hant\/","name":"Linux Professional Institute (LPI)","description":"","publisher":{"@id":"https:\/\/www.lpi.org\/zh-hant\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lpi.org\/zh-hant\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-TW"},{"@type":"Organization","@id":"https:\/\/www.lpi.org\/zh-hant\/#organization","name":"Linux Professional Institute (LPI)","url":"https:\/\/www.lpi.org\/zh-hant\/","logo":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.lpi.org\/zh-hant\/#\/schema\/logo\/image\/","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2023\/04\/logo.png","width":496,"height":175,"caption":"Linux Professional Institute (LPI)"},"image":{"@id":"https:\/\/www.lpi.org\/zh-hant\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/LPIConnect","https:\/\/x.com\/lpiconnect","https:\/\/www.linkedin.com\/company\/35136","https:\/\/www.instagram.com\/lpi_org\/","https:\/\/fosstodon.org\/@LPI"]},{"@type":"Person","@id":"https:\/\/www.lpi.org\/zh-hant\/#\/schema\/person\/87a340eca845e18d801667fd11e6937c","name":"Fabian Thorns","image":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg583c90110e404d4e42f0be7307753074","url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","contentUrl":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","caption":"Fabian Thorns"},"description":"Fabian Thorns is the Director of Product Development at Linux Professional Institute, LPI. He is M.Sc. Business Information Systems, a regular speaker at open source events and the author of numerous articles and books. Fabian has been part of the exam development team since 2010. Connect with him on LinkedIn, XING\u00a0or via email (fthorns\u00a0at\u00a0www.lpi.org)."}]}},"views":474,"authors":[{"term_id":540,"user_id":66,"is_guest":0,"slug":"fthornslpi-org","display_name":"Fabian Thorns","avatar_url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2026\/01\/cropped-fabian-thorns-1920px-96x96.jpg","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""},{"term_id":571,"user_id":109,"is_guest":0,"slug":"uira-ribeiro","display_name":"Uir\u00e1 Ribeiro","avatar_url":"https:\/\/www.lpi.org\/wp-content\/uploads\/2024\/07\/cropped-cropped-uria-ribeiro-220x220-1-96x96.jpg","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/posts\/37181","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/users\/66"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/comments?post=37181"}],"version-history":[{"count":2,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/posts\/37181\/revisions"}],"predecessor-version":[{"id":37259,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/posts\/37181\/revisions\/37259"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/media\/37182"}],"wp:attachment":[{"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/media?parent=37181"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/categories?post=37181"},{"taxonomy":"country","embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/country?post=37181"},{"taxonomy":"language","embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/language?post=37181"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.lpi.org\/zh-hant\/wp-json\/wp\/v2\/ppma_author?post=37181"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}