From 4e94b52ecf2ab79322c26da970ac09f953826457 Mon Sep 17 00:00:00 2001 From: leaddevops <36464863+leaddevops@users.noreply.github.com> Date: Wed, 11 Oct 2023 21:31:14 +0530 Subject: [PATCH] create --- .../06-named-templates/README.md | 6 +++--- 05-create-helm-charts/README.md | 15 +++++++++------ 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/05-create-helm-charts/06-named-templates/README.md b/05-create-helm-charts/06-named-templates/README.md index 3c1a58e..7d8e96d 100644 --- a/05-create-helm-charts/06-named-templates/README.md +++ b/05-create-helm-charts/06-named-templates/README.md @@ -3,7 +3,7 @@ ## define a named template & reuse -#### examin the ntchart1 from [github repo](https://github.com/lerndevops/helm-charts/tree/main/05-create-helm-charts/06-named-templates/ntchart1) +#### examin the ntchart1 from [github repo](ntchart1) ```sh # get the chart to local @@ -33,7 +33,7 @@ helm install ntchart1-rel . --dry-run ## use builtin objects in template definitions -#### examin the ntchart2 from [github repo](https://github.com/lerndevops/helm-charts/tree/main/05-create-helm-charts/06-named-templates/ntchart2) +#### examin the ntchart2 from [github repo](ntchart2) ```sh # get the chart to local @@ -68,7 +68,7 @@ helm install ntchart2-rel . --dry-run * **These files are not rendered to Kubernetes object definitions, but are available everywhere within other chart templates for use.** * **These files are used to store partials and helpers.** -#### examin the ntchart3 from [github repo](https://github.com/lerndevops/helm-charts/tree/main/05-create-helm-charts/06-named-templates/ntchart3) +#### examin the ntchart3 from [github repo](ntchart3) ```sh # get the chart to local diff --git a/05-create-helm-charts/README.md b/05-create-helm-charts/README.md index a1750d9..4c22857 100644 --- a/05-create-helm-charts/README.md +++ b/05-create-helm-charts/README.md @@ -8,9 +8,12 @@ * ***we can also templatize these yaml files to pass values dynamically by using `helm template language`*** --- -01. [understand-helm-chart-structure](00-helm-chart-structure/README.md) -02. [create-helm-chart-manual](01-create-helm-chart-manual/README.md) -03. [helm-create](02-helm-create/README.md) -04. [understand-NOTES.txt](03-understand-NOTES.txt/README.md) -05. [helm-chart-built-in-objects](04-built-in-objects/README.md) -06. [helm-chart-templates-actions](05-helm-chart-template-functions/README.md) \ No newline at end of file +00. [understand-helm-chart-structure](00-helm-chart-structure/README.md) +01. [create-helm-chart-manual](01-create-helm-chart-manual/README.md) +02. [helm-create](02-helm-create/README.md) +03. [understand-NOTES.txt](03-understand-NOTES.txt/README.md) +04. [helm-chart-built-in-objects](04-built-in-objects/README.md) +05. [helm-chart-templates-functions](05-helm-chart-template-functions/README.md) +06. [flow-control](07-flow-control) +07. [named-templates](06-named-templates) +08. [vaiables](08-helm-chart-variables)