mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
Move Blocky replicas under controller definition (#1102)
This commit is contained in:
parent
5d1e7d6ddc
commit
226ccc84f0
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.14
|
appVersion: v0.14
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
name: blocky
|
name: blocky
|
||||||
version: 7.1.0
|
version: 7.1.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- blocky
|
- blocky
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# blocky
|
# blocky
|
||||||
|
|
||||||
![Version: 7.1.0](https://img.shields.io/badge/Version-7.1.0-informational?style=flat-square) ![AppVersion: v0.14](https://img.shields.io/badge/AppVersion-v0.14-informational?style=flat-square)
|
![Version: 7.1.1](https://img.shields.io/badge/Version-7.1.1-informational?style=flat-square) ![AppVersion: v0.14](https://img.shields.io/badge/AppVersion-v0.14-informational?style=flat-square)
|
||||||
|
|
||||||
DNS proxy as ad-blocker for local network
|
DNS proxy as ad-blocker for local network
|
||||||
|
|
||||||
@ -76,6 +76,7 @@ N/A
|
|||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| config | string | see URL to default config | Full list of options https://github.com/0xERR0R/blocky/blob/master/docs/config.yml |
|
| config | string | see URL to default config | Full list of options https://github.com/0xERR0R/blocky/blob/master/docs/config.yml |
|
||||||
|
| controller.replicas | int | `1` | (int) Number of pods to load balance between |
|
||||||
| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy |
|
| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy |
|
||||||
| env | object | See below | environment variables. See [image docs](https://0xerr0r.github.io/blocky/installation/#run-with-docker) for more details. |
|
| env | object | See below | environment variables. See [image docs](https://0xerr0r.github.io/blocky/installation/#run-with-docker) for more details. |
|
||||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||||
@ -84,7 +85,6 @@ N/A
|
|||||||
| image.tag | string | `"v0.14"` | image tag |
|
| image.tag | string | `"v0.14"` | image tag |
|
||||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||||
| prometheus.serviceMonitor | object | See values.yaml | Enable and configure a Prometheus serviceMonitor for the chart under this key. See also the notes under `additionalContainers`. |
|
| prometheus.serviceMonitor | object | See values.yaml | Enable and configure a Prometheus serviceMonitor for the chart under this key. See also the notes under `additionalContainers`. |
|
||||||
| replicas | int | `1` | (int) Number of pods to load balance between |
|
|
||||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
@ -16,6 +16,8 @@ image:
|
|||||||
controller:
|
controller:
|
||||||
# -- Set the controller upgrade strategy
|
# -- Set the controller upgrade strategy
|
||||||
strategy: RollingUpdate
|
strategy: RollingUpdate
|
||||||
|
# -- (int) Number of pods to load balance between
|
||||||
|
replicas: 1
|
||||||
|
|
||||||
# -- environment variables. See [image docs](https://0xerr0r.github.io/blocky/installation/#run-with-docker) for more details.
|
# -- environment variables. See [image docs](https://0xerr0r.github.io/blocky/installation/#run-with-docker) for more details.
|
||||||
# @default -- See below
|
# @default -- See below
|
||||||
@ -23,9 +25,6 @@ env:
|
|||||||
# -- Set the container timezone
|
# -- Set the container timezone
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
|
|
||||||
# -- (int) Number of pods to load balance between
|
|
||||||
replicas: 1
|
|
||||||
|
|
||||||
# -- Configures service settings for the chart.
|
# -- Configures service settings for the chart.
|
||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
service:
|
service:
|
||||||
|
Loading…
Reference in New Issue
Block a user