You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempted to push to a branch to correct some typos in the README but got permission denied.
Here's the raw of the changes.
# Helm Charts
Collection of charts that can be used for any type of deployment
## Base Chart
`./charts/base`
This chart used as a collection of templates and functions
## other charts
All other charts include `base` chart as dependency
```
dependencies:
- name: base
repository: file://../base
```
Required templates are being loaded with:
```
{{ include "base.configmaps" . }}
{{ include "base.secrets" . }}
{{ include "base.service" . }}
{{ include "base.ingress" . }}
{{ include "base.deployment" . }}
```
## How to use helm repo
Create values.yaml file
```
image:
repository: "juriku/curl-jq-bash-alpine-docker"
command:
- "sh"
- "-c"
- "sleep 60"
```
```
helm repo add baseCharts https://yapily.github.io/helm-charts
```
```
helm install my-release baseCharts/app -f my-release/values.yaml
```
## Extra options
Check default `values.yaml` file for extra parameters
The text was updated successfully, but these errors were encountered:
Hi there,
Attempted to push to a branch to correct some typos in the README but got permission denied.
Here's the raw of the changes.
The text was updated successfully, but these errors were encountered: