Skip to content

Commit

Permalink
Merge pull request #266 from johanneskastl/20250121_blocky_dns_service
Browse files Browse the repository at this point in the history
20250121 blocky dns service
  • Loading branch information
johanneskastl authored Jan 21, 2025
2 parents 8fe2a88 + 3fd3ee8 commit 74414b4
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
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

0 comments on commit 74414b4

Please sign in to comment.