Skip to content

Commit

Permalink
feat(charts): Adding readme for charts
Browse files Browse the repository at this point in the history
  • Loading branch information
m-yosefpor committed Oct 21, 2021
1 parent 3047458 commit 27a5682
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ sudo docker run -p 8080:8080 -v ./config.yaml:/app/config.yaml:z docker.pkg.gith
untested.


1. Add the HashiCorp Helm Repository:
1. Add the SnappCab Helm Repository:

```bash
helm repo add snapp-cab https://snapp-cab.github.io/health-exporter/charts
Expand Down
4 changes: 2 additions & 2 deletions charts/health-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ home: https://github.com/snapp-cab/health-exporter
sources:
- https://github.com/snapp-cab/health-exporter.git
type: application
version: 0.3.2
appVersion: 0.3.0
version: 0.3.3
appVersion: 0.3.1
33 changes: 32 additions & 1 deletion charts/health-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,32 @@
# Helm chart for health-exporter
# health-exporter

![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.1](https://img.shields.io/badge/AppVersion-0.3.1-informational?style=flat-square)

**Homepage:** <https://github.com/snapp-cab/health-exporter>

## Source Code

* <https://github.com/snapp-cab/health-exporter.git>

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| autoscaling.enabled | bool | `false` | |
| autoscaling.maxReplicas | int | `4` | |
| autoscaling.minReplicas | int | `2` | |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| autoscaling.targetMemoryUtilizationPercentage | int | `80` | |
| config.listen | string | `":9876"` | |
| config.targets.dns | list | `[]` | |
| config.targets.http | list | `[]` | |
| image.repository | string | `"ghcr.io/snapp-incubator/health-exporter"` | |
| image.tag | string | `""` | |
| replicas | int | `1` | |
| resources.limits.cpu | string | `"1"` | |
| resources.limits.memory | string | `"100Mi"` | |
| resources.requests.cpu | string | `"1"` | |
| resources.requests.memory | string | `"100Mi"` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
32 changes: 16 additions & 16 deletions charts/health-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ autoscaling:
config:
listen: ':9876'
targets:
http:
- name: 'sample'
url: 'http://google.com'
rps: 0.5
timeout: '5s'
- name: 'google-tls'
url: 'https://google.com'
rps: 0.5
timeout: '5s'
tls_skip_verify: true
dns:
- name: 'google'
domain: 'google.com'
record_type: 'A'
rps: 0.5
timeout: '2s'
http: []
# - name: 'sample'
# url: 'http://google.com'
# rps: 0.5
# timeout: '5s'
# - name: 'google-tls'
# url: 'https://google.com'
# rps: 0.5
# timeout: '5s'
# tls_skip_verify: true
dns: []
# - name: 'google'
# domain: 'google.com'
# record_type: 'A'
# rps: 0.5
# timeout: '2s'

0 comments on commit 27a5682

Please sign in to comment.