Skip to content

Commit

Permalink
create
Browse files Browse the repository at this point in the history
  • Loading branch information
leaddevops authored Oct 9, 2023
1 parent 83ff8da commit d786897
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions 05-create-helm-charts/01-built-in-objects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 */}}
Expand All @@ -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
Expand Down

0 comments on commit d786897

Please sign in to comment.