Skip to content

Commit

Permalink
Merge pull request #5 from sngular/fix-env-type
Browse files Browse the repository at this point in the history
Fix env type section
  • Loading branch information
Manuel Morejón committed May 30, 2021
2 parents f58b498 + 19b9d71 commit 3f90a37
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ autodoc:
@echo "~~~~~[ Autodoc ]~~~~~"
@docker run --rm -u $(shell id -u) -v $(shell pwd):/helm -w /helm jnorwood/helm-docs:v1.5.0 \
--template-files=README.md.gotmpl --chart-search-root=./${charts_dir}

@echo "Generating table of contents for charts..."
@sed -i '/^## Charts/Q' README.md
@echo -e "## Charts\n" >> README.md
@find ./${charts_dir} -name README.md | sed "s/\.\/${charts_dir}\/\(.*\)\/README.md/- [\1](.\/${charts_dir}\/\1\/README.md)/g" >> README.md
@ git add \*README.md

2 changes: 1 addition & 1 deletion charts/echobot/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: echobot
description: A Helm chart for the echobot service
type: application
version: 0.3.2
version: 0.3.3
appVersion: "v0.2.0"
maintainers:
- email: manuel.morejon@users.noreply.github.com
Expand Down
4 changes: 2 additions & 2 deletions charts/echobot/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# echobot

![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.2.0](https://img.shields.io/badge/AppVersion-v0.2.0-informational?style=flat-square)
![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: v0.2.0](https://img.shields.io/badge/AppVersion-v0.2.0-informational?style=flat-square)

A Helm chart for the echobot service

Expand All @@ -20,7 +20,7 @@ A Helm chart for the echobot service
| autoscaling.maxReplicas | int | `100` | |
| autoscaling.minReplicas | int | `1` | |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| env | object | `{}` | |
| env | list | `[]` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/sngular/gitops-echobot"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/echobot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

env: {}
env: []
# - name: VARIABLE_NAME
# value: "Example value"

Expand Down

0 comments on commit 3f90a37

Please sign in to comment.