Skip to content

Commit 47b3343

Browse files
Antoine TANZILLITailzip
authored andcommitted
chore(release): 1.0.0
1 parent bfdb5a7 commit 47b3343

File tree

4 files changed

+43
-9
lines changed

4 files changed

+43
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
env:
3030
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
3131
with:
32-
charts_repo_url: https://tailzip.github.io/dnscrypt-proxy-helm-chart/
32+
charts_repo_url: https://tailzip.github.io/dnscrypt-proxy/

README.md

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,45 @@
1-
# dnscrypt-proxy-helm-chart
1+
# dnscrypt-proxy
2+
3+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.44](https://img.shields.io/badge/AppVersion-2.0.44-informational?style=flat-square)
4+
5+
Simple Helm chart for [dnscrypt-proxy](https://github.com/DNSCrypt/dnscrypt-proxy).
26

37
## Usage
48

5-
TODO
9+
### Add Helm repository
10+
11+
```sh
12+
helm repo add tailzip https://tailzip.github.io/dnscrypt-proxy/
13+
helm repo update
14+
```
15+
16+
### Install chart
17+
18+
```sh
19+
helm install --name your-release tailzip/dnscrypt-proxy
20+
```
621

7-
## Credits
22+
## Values
823

9-
TODO
24+
| Key | Type | Default | Description |
25+
|-----|------|---------|-------------|
26+
| affinity | object | `{}` | |
27+
| clusterDomain | string | `""` | used for Helm chart testing only (see [test-dns-proxy.yaml](./charts/dnscrypt-proxy/templates/tests/test-dns-proxy.yaml)) |
28+
| config | string | `""` | dnscrypt-proxy TOML configuration ([see docs](https://github.com/DNSCrypt/dnscrypt-proxy/wiki/Configuration)) |
29+
| image.pullPolicy | string | `"IfNotPresent"` | |
30+
| image.repository | string | `"klutchell/dnscrypt-proxy"` | |
31+
| image.tag | string | `"2.0.44"` | |
32+
| nodeSelector | object | `{}` | |
33+
| resources | object | `{}` | |
34+
| serviceTCP.annotations | object | `{}` | |
35+
| serviceTCP.externalTrafficPolicy | string | `"Local"` | |
36+
| serviceTCP.loadBalancerIP | string | `""` | |
37+
| serviceTCP.type | string | `"NodePort"` | |
38+
| serviceUDP.annotations | object | `{}` | |
39+
| serviceUDP.externalTrafficPolicy | string | `"Local"` | |
40+
| serviceUDP.loadBalancerIP | string | `""` | |
41+
| serviceUDP.type | string | `"NodePort"` | |
42+
| tolerations | list | `[]` | |
1043

1144
## License
1245

charts/dnscrypt-proxy/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
appVersion: 2.0.44
33
description: dnscrypt-proxy for Kubernetes
4-
icon: https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/logo.png
4+
icon: https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/logo.svg
55
keywords:
66
- dnscrypt-proxy
77
- dnscrypt
@@ -10,6 +10,6 @@ maintainers:
1010
name: Tailzip
1111
name: dnscrypt-proxy
1212
sources:
13-
- https://github.com/Tailzip/dnscrypt-proxy-helm-chart
13+
- https://github.com/Tailzip/dnscrypt-proxy
1414
type: application
15-
version: 0.1.2
15+
version: 1.0.0

charts/dnscrypt-proxy/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ tolerations: []
3333

3434
affinity: {}
3535

36-
# dnscrypt-proxy TOML config
36+
# -- dnscrypt-proxy TOML configuration ([see docs](https://github.com/DNSCrypt/dnscrypt-proxy/wiki/Configuration))
3737
config: ""
3838

39+
# -- used for Helm chart testing only (see [test-dns-proxy.yaml](./charts/dnscrypt-proxy/templates/tests/test-dns-proxy.yaml))
3940
clusterDomain: ""

0 commit comments

Comments
 (0)