File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,28 +5,34 @@ A helm chart for running Tinyauth in a Kubernetes cluster.
55## Development
66
77Documentation and values schema generation is powered by:
8+
89- [ helm-docs] ( https://github.com/norwoodj/helm-docs ) for generating chart documentation
910- [ helm-values-schema-json] ( https://github.com/losisin/helm-values-schema-json ) for JSON schema validation
1011
1112### Generating Chart READMEs
1213
1314Install tools:
15+
1416``` bash
1517go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest
1618```
1719
1820Generate README:
21+
1922``` bash
2023cd charts/tinyauth && helm-docs
2124```
25+
2226### Generating JSON Schema
2327
2428Install tools:
29+
2530``` bash
2631helm plugin install https://github.com/losisin/helm-values-schema-json.git
2732```
2833
2934Generate schema:
35+
3036``` bash
3137cd charts/tinyauth && helm schema
3238```
@@ -37,4 +43,4 @@ CI uses [chart-testing-action](https://github.com/helm/chart-testing-action) to
3743
3844### Releasing
3945
40- To release a new chart version, create and push a git tag. The release workflow uses [ chart-releaser-action] ( https://github.com/helm/chart-releaser-action ) to package and publish charts to GitHub Pages.
46+ To release a new chart version, create and push a git tag. The release workflow uses [ chart-releaser-action] ( https://github.com/helm/chart-releaser-action ) to package and publish charts to GitHub Pages.
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ version: 0.1.0
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
24- appVersion : " v4.0.0"
24+ appVersion : " v4.0.0-beta.2 "
Original file line number Diff line number Diff line change 11# tinyauth
22
3- ![ Version: 0.1.0] ( https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v4.0.0] ( https://img.shields.io/badge/AppVersion-v4.0.0-informational?style=flat-square )
3+ ![ Version: 0.1.0] ( https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v4.0.0-beta.2 ] ( https://img.shields.io/badge/AppVersion-v4.0.0--beta.2 -informational?style=flat-square )
44
55The simplest way to protect your apps with a login screen.
66
@@ -98,5 +98,3 @@ The simplest way to protect your apps with a login screen.
9898| volumeMounts | list | ` [] ` | |
9999| volumes | list | ` [] ` | |
100100
101- ----------------------------------------------
102- Autogenerated from chart metadata using [ helm-docs v1.14.2] ( https://github.com/norwoodj/helm-docs/releases/v1.14.2 )
Original file line number Diff line number Diff line change 11apiVersion : v1
22kind : Service
33metadata :
4- name : {{ include "tinyauth.fullname" . }}
5- labels :
6- {{- include "tinyauth.labels" . | nindent 4 }}
4+ name : { { include "tinyauth.fullname" . } }
5+ labels : { { - include "tinyauth.labels" . | nindent 4 } }
76spec :
8- type : {{ .Values.service.type }}
7+ type : { { .Values.service.type } }
98 ports :
10- - port : {{ .Values.service.port }}
9+ - port : { { .Values.service.port } }
1110 targetPort : http
1211 protocol : TCP
1312 name : http
14- selector :
15- {{- include "tinyauth.selectorLabels" . | nindent 4 }}
13+ selector : { { - include "tinyauth.selectorLabels" . | nindent 4 } }
You can’t perform that action at this time.
0 commit comments