Compare commits
3 Commits
f5fdcff1d9
...
c5c7b21e6f
Author | SHA1 | Date | |
---|---|---|---|
c5c7b21e6f | |||
15f9334d28 | |||
5d77150525 |
@ -1,5 +1,5 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.107.56
|
appVersion: 0.107.57
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/adguard-home
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/adguard-home
|
||||||
icon: https://avatars3.githubusercontent.com/u/8361145?s=200&v=4?sanitize=true
|
icon: https://avatars3.githubusercontent.com/u/8361145?s=200&v=4?sanitize=true
|
||||||
@ -12,4 +12,4 @@ maintainers:
|
|||||||
name: adguard-home
|
name: adguard-home
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/AdguardTeam/AdGuardHome
|
- https://github.com/AdguardTeam/AdGuardHome
|
||||||
version: 2.3.29
|
version: 2.3.30
|
||||||
|
@ -4,7 +4,7 @@ strategyType: Recreate
|
|||||||
image:
|
image:
|
||||||
repository: adguard/adguardhome
|
repository: adguard/adguardhome
|
||||||
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
||||||
tag: v0.107.56
|
tag: v0.107.57
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
@ -15,7 +15,7 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.1.11
|
version: 0.1.12
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
@ -32,7 +32,7 @@ spec:
|
|||||||
- name: {{ .Chart.Name }}-runner
|
- name: {{ .Chart.Name }}-runner
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.image.runner.repository }}:{{ .Values.image.runner.tag | default .Chart.AppVersion }}"
|
||||||
command: ["/bin/sh"]
|
command: ["/bin/sh"]
|
||||||
args: ["-c", "while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; /sbin/tini -- /opt/act/run.sh"]
|
args: ["-c", "while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...'; sleep 5; done; /sbin/tini -- /opt/act/run.sh"]
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
@ -81,7 +81,7 @@ spec:
|
|||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
- name: {{ .Chart.Name }}-daemon
|
- name: {{ .Chart.Name }}-daemon
|
||||||
image: docker:23.0.6-dind
|
image: "{{ .Values.image.daemon.repository }}:{{ .Values.image.daemon.tag | default .Chart.AppVersion }}"
|
||||||
env:
|
env:
|
||||||
- name: DOCKER_TLS_CERTDIR
|
- name: DOCKER_TLS_CERTDIR
|
||||||
value: /certs
|
value: /certs
|
||||||
|
@ -5,10 +5,15 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: gitea/act_runner
|
runner:
|
||||||
pullPolicy: IfNotPresent
|
repository: gitea/act_runner
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
pullPolicy: IfNotPresent
|
||||||
tag: "0.2.11"
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
|
tag: "0.2.11"
|
||||||
|
daemon:
|
||||||
|
repository: docker
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: "27.5.1-dind"
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
@ -15,12 +15,12 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time
|
# This is the chart version. This version number should be incremented each time
|
||||||
# you make changes to the chart and its templates, including the app version.
|
# you make changes to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 5.1.5
|
version: 5.1.6
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
appVersion: v4.2.12
|
appVersion: v4.2.17
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: elasticsearch
|
- name: elasticsearch
|
||||||
|
@ -6,7 +6,7 @@ image:
|
|||||||
# built from the most recent commit
|
# built from the most recent commit
|
||||||
#
|
#
|
||||||
# tag: latest
|
# tag: latest
|
||||||
tag: "v4.2.12"
|
tag: "v4.2.17"
|
||||||
# use `Always` when using `latest` tag
|
# use `Always` when using `latest` tag
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user