Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20250121 blocky dns service #266

Merged
merged 4 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/blocky/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
appVersion: v0.25
description: DNS proxy as ad-blocker for local network
name: blocky
version: 11.5.0
version: 11.6.0
kubeVersion: ">=1.19.0-0"
keywords:
- blocky
Expand All @@ -27,4 +27,4 @@ dependencies:
annotations:
artifacthub.io/changes: |-
- kind: changed
description: update appVersion to 0.25
description: add new service dns with port 53 for both UDP and TCP
12 changes: 11 additions & 1 deletion charts/blocky/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# blocky

![Version: 11.5.0](https://img.shields.io/badge/Version-11.5.0-informational?style=flat-square) ![AppVersion: v0.25](https://img.shields.io/badge/AppVersion-v0.25-informational?style=flat-square)
![Version: 11.6.0](https://img.shields.io/badge/Version-11.6.0-informational?style=flat-square) ![AppVersion: v0.25](https://img.shields.io/badge/AppVersion-v0.25-informational?style=flat-square)

DNS proxy as ad-blocker for local network

Expand Down Expand Up @@ -105,6 +105,16 @@ All notable changes to this Helm chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Version 11.6.0

#### Added

N/A

#### Changed

* add new service dns with port 53 for both UDP and TCP

### Version 11.5.0

#### Added
Expand Down
10 changes: 10 additions & 0 deletions charts/blocky/README_CHANGELOG.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ All notable changes to this Helm chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Version 11.6.0

#### Added

N/A

#### Changed

* add new service dns with port 53 for both UDP and TCP

### Version 11.5.0

#### Added
Expand Down
15 changes: 15 additions & 0 deletions charts/blocky/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ service:
ports:
http:
port: 4000
dns:
enabled: false
type: ClusterIP
externalTrafficPolicy: Local
ports:
dns-tcp:
enabled: true
port: 53
protocol: TCP
targetPort: 53
dns-udp:
enabled: true
port: 53
protocol: UDP
targetPort: 53
dns-tcp:
enabled: false
type: ClusterIP
Expand Down
Loading