Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
8c8632315f
commit
105f1efbb6
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [gravity-0.0.1]gravity-0.0.1 (2023-07-06)
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.6.8"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
deprecated: false
|
||||
description: Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd.
|
||||
home: https://truecharts.org/charts/incubator/gravity
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png
|
||||
keywords:
|
||||
- gravity
|
||||
- dns
|
||||
- networking
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: gravity
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/gravity
|
||||
- https://github.com/BeryJu/gravity
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- dns
|
||||
- networking
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1 @@
|
|||
# README
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [gravity-0.0.1]gravity-0.0.1 (2023-07-06)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/gravity](https://truecharts.org/charts/incubator/gravity)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,54 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/gravity
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v0.6.8@sha256:290b9e12ffbd412e02803fc11c61de1731b69dd761e4c1af39b7b0d863bc5261
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
targetPort: 8008
|
||||
port: 8008
|
||||
dns:
|
||||
enabled: true
|
||||
ports:
|
||||
dns-tcp:
|
||||
enabled: true
|
||||
targetPort: 53
|
||||
port: 53
|
||||
dns-udp:
|
||||
enabled: true
|
||||
protocol: udp
|
||||
targetPort: 53
|
||||
port: 53
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
INSTANCE_IP: "127.0.0.1"
|
||||
ADMIN_PASSWORD: "password"
|
||||
INSTANCE_IDENTIFIER: "truecharts-dns-gravity"
|
||||
BOOTSTRAP_ROLES: "dns;api;etcd;discovery;backup;monitoring;tsdb"
|
||||
ADMIN_TOKEN:
|
||||
secretKeyRef:
|
||||
name: gravity-secret
|
||||
key: ADMIN_TOKEN
|
||||
INSTANCE_LISTEN: "0.0.0.0"
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,14 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "gravity.secret" -}}
|
||||
{{- $secretName := (printf "%s-gravity-secret" (include "tc.v1.common.lib.chart.names.fullname" $)) -}}
|
||||
|
||||
{{- $token := randAlphaNum 32 -}}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||||
{{- $token = index .data "ADMIN_TOKEN" | b64dec -}}
|
||||
{{- end }}
|
||||
|
||||
gravity-secret:
|
||||
enabled: true
|
||||
data:
|
||||
ADMIN_TOKEN: {{ $token }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- $secret := include "gravity.secret" . | fromYaml -}}
|
||||
{{- if $secret -}}
|
||||
{{ $secret := (mustMergeOverwrite .Values.secret $secret) }}
|
||||
{{- $_ := set .Values "secret" $secret -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,6 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png
|
||||
categories:
|
||||
- dns
|
||||
- networking
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue