[blocky] Improve values.yaml documentation (#220)

* Improve values.yaml documentation

Also fix syntax error for declaring extraLists -- it needs to be a map, not an array

* bump blocky bugfix version
This commit is contained in:
Dewet Diener 2020-05-11 13:09:22 +01:00 committed by GitHub
parent 79e44a4a4b
commit 90c6d92050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 7 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "v0.6" appVersion: "v0.6"
description: DNS proxy as ad-blocker for local network description: DNS proxy as ad-blocker for local network
name: blocky name: blocky
version: 3.1.0 version: 3.1.1
keywords: keywords:
- blocky - blocky
- dbs - dbs

View File

@ -49,7 +49,11 @@ config:
- https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt - https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt
special: special:
- https://hosts-file.net/ad_servers.txt - https://hosts-file.net/ad_servers.txt
# definition of whitelist groups. Attention: if the same group has black and whitelists, whitelists will be used to disable particular blacklist entries. If a group has only whitelist entries -> this means only domains from this list are allowed, all other domains will be blocked # definition of whitelist groups. Attention: if the same group has black and whitelists,
# whitelists will be used to disable particular blacklist entries. If a group has only
# whitelist entries -> this means only domains from this list are allowed,
# all other domains will be blocked.
# Also see the extraLists section below to add your own in-line whitelists
# whiteLists: # whiteLists:
# ads: # ads:
# - whitelist.txt # - whitelist.txt
@ -62,10 +66,12 @@ config:
# use client name or ip address # use client name or ip address
# laptop.fritz.box: # laptop.fritz.box:
# - ads # - ads
# which response will be sent, if query is blocked: # which response will be sent, if query is blocked:
# zeroIp: 0.0.0.0 will be returned (default) # zeroIp: 0.0.0.0 will be returned (default)
# nxDomain: return NXDOMAIN as return code # nxDomain: return NXDOMAIN as return code
# blockType: zeroIp # blockType: zeroIp
# optional: automatically list refresh period in minutes. Default: 4h. # optional: automatically list refresh period in minutes. Default: 4h.
# Negative value -> deactivate automatically refresh. # Negative value -> deactivate automatically refresh.
# 0 value -> use default # 0 value -> use default
@ -174,7 +180,9 @@ tolerations: []
affinity: {} affinity: {}
## Add any extra files you want populated to /app here ## Add any extra files you want populated to /app here, e.g.:
# ex: # extraLists:
# - whitelist.txt: "line1" # whitelist.txt: |
# analytics.google.com
# googleadservices.com
extraLists: {} extraLists: {}