Skip to content

Commit 684d5de

Browse files
committed
chore: bump tinyauth to v4 beta 2
1 parent 8b0d461 commit 684d5de

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,34 @@ A helm chart for running Tinyauth in a Kubernetes cluster.
55
## Development
66

77
Documentation 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

1314
Install tools:
15+
1416
```bash
1517
go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest
1618
```
1719

1820
Generate README:
21+
1922
```bash
2023
cd charts/tinyauth && helm-docs
2124
```
25+
2226
### Generating JSON Schema
2327

2428
Install tools:
29+
2530
```bash
2631
helm plugin install https://github.com/losisin/helm-values-schema-json.git
2732
```
2833

2934
Generate schema:
35+
3036
```bash
3137
cd 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.

charts/tinyauth/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

charts/tinyauth/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
The 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)
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
apiVersion: v1
22
kind: Service
33
metadata:
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 } }
76
spec:
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 } }

0 commit comments

Comments
 (0)