From d7868972b62abf7f6a7bfe53c9e23a547f554769 Mon Sep 17 00:00:00 2001 From: leaddevops <36464863+leaddevops@users.noreply.github.com> Date: Tue, 10 Oct 2023 02:07:59 +0530 Subject: [PATCH] create --- .../01-built-in-objects/README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/05-create-helm-charts/01-built-in-objects/README.md b/05-create-helm-charts/01-built-in-objects/README.md index f562861..38e8dd4 100644 --- a/05-create-helm-charts/01-built-in-objects/README.md +++ b/05-create-helm-charts/01-built-in-objects/README.md @@ -111,6 +111,15 @@ Chart Name and Version: antiks-0.1.0 - **Values Object:** Values passed into the template from the values.yaml file and from user-supplied files. By default, Values is empty. - Put the below in `NOTES.txt` and test it ```sh +vi $HOME/antiks/values.yaml +replicaCount: 2 +image + repository: docker.io/lerndevops/samples + tag: pyapp-v1 +service + type: LoadBalancer +``` +```sh vi $HOME/antiks/templates/NOTES.txt {{/* Values Object */}} @@ -125,9 +134,9 @@ helm install antiks antiks/ --dry-run ``` ```sh # Sample Output -Replica Count: 1 -Image Repository: ghcr.io/stacksimplify/kubenginxhelm -Service Type: NodePort +Replica Count: 2 +Image Repository: docker.io/lerndevops/samples +Service Type: LoadBalancer ``` ## Capabilities Object