Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-04-14 07:52:52 +00:00
parent dfa26fab65
commit 864f4bac2f
27 changed files with 57 additions and 37 deletions

View File

@ -1,9 +0,0 @@
## [lldap-0.1.0](https://github.com/truecharts/charts/compare/lldap-0.0.2...lldap-0.1.0) (2023-04-13)
### Fix
- lldap fixes and refactor ([#7869](https://github.com/truecharts/charts/issues/7869))

View File

@ -4,6 +4,15 @@
## [lldap-0.1.1](https://github.com/truecharts/charts/compare/lldap-0.1.0...lldap-0.1.1) (2023-04-14)
### Fix
- ldap port fix ([#7974](https://github.com/truecharts/charts/issues/7974))
## [lldap-0.1.0](https://github.com/truecharts/charts/compare/lldap-0.0.2...lldap-0.1.0) (2023-04-13)
### Fix

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/lldap
- https://github.com/nitnelave/lldap
type: application
version: 0.1.0
version: 0.1.1
annotations:
truecharts.org/catagories: |
- ldap

View File

@ -0,0 +1,9 @@
## [lldap-0.1.1](https://github.com/truecharts/charts/compare/lldap-0.1.0...lldap-0.1.1) (2023-04-14)
### Fix
- ldap port fix ([#7974](https://github.com/truecharts/charts/issues/7974))

View File

@ -14,9 +14,10 @@ service:
targetPort: 17170
port: 17170
ldap:
enabled: true
ports:
enabled: true
ldap:
enabled: true
targetPort: 3890
port: 3890

View File

@ -282,7 +282,7 @@ questions:
schema:
type: boolean
default: false
- variable: externalInterfaces
- variable: scaleExternalInterface
description: Add External Interfaces
label: Add external Interfaces
group: Networking
@ -1115,7 +1115,7 @@ questions:
description: Sets the persistence type
schema:
type: string
default: hostPath
default: device
hidden: true
- variable: readOnly
label: readOnly

View File

@ -1,9 +0,0 @@
## [tailscale-4.0.4](https://github.com/truecharts/charts/compare/tailscale-4.0.3...tailscale-4.0.4) (2023-04-13)
### Chore
- bump common on the 222 ([#7959](https://github.com/truecharts/charts/issues/7959))

View File

@ -4,6 +4,15 @@
## [tailscale-4.0.5](https://github.com/truecharts/charts/compare/tailscale-4.0.4...tailscale-4.0.5) (2023-04-14)
### Fix
- mount service account token and fix secret ([#7978](https://github.com/truecharts/charts/issues/7978))
## [tailscale-4.0.4](https://github.com/truecharts/charts/compare/tailscale-4.0.3...tailscale-4.0.4) (2023-04-13)
### Chore
@ -88,12 +97,3 @@
### Chore
- update container image tailscale/tailscale to v1.36.0
## [tailscale-3.0.12](https://github.com/truecharts/charts/compare/tailscale-3.0.11...tailscale-3.0.12) (2023-01-07)
### Chore
- update container image tailscale/tailscale to v1.34.2

View File

@ -19,7 +19,7 @@ name: tailscale
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/tailscale
- https://github.com/tailscale/tailscale/blob/main/docs/k8s/run.sh
version: 4.0.4
version: 4.0.5
annotations:
truecharts.org/catagories: |
- network

View File

@ -0,0 +1,9 @@
## [tailscale-4.0.5](https://github.com/truecharts/charts/compare/tailscale-4.0.4...tailscale-4.0.5) (2023-04-14)
### Fix
- mount service account token and fix secret ([#7978](https://github.com/truecharts/charts/issues/7978))

View File

@ -72,15 +72,28 @@ securityContext:
workload:
main:
podSpec:
automountServiceAccountToken: true
containers:
main:
probes:
liveness:
enabled: false
type: exec
command:
- tailscale
- status
readiness:
enabled: false
type: exec
command:
- tailscale
- status
startup:
enabled: false
type: exec
command:
- tailscale
- status
envFrom:
- configMapRef:
name: "tailscale-config"

View File

@ -234,7 +234,7 @@ questions:
schema:
type: boolean
default: true
- variable: externalInterfaces
- variable: scaleExternalInterface
description: Add External Interfaces
label: Add external Interfaces
group: Networking

View File

@ -1,9 +1,6 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secret */}}
{{- include "tailscale.secret" . }}
{{/* Render configmap for tailscale */}}
{{- $configmap := include "tailscale.config" . | fromYaml -}}
{{- if $configmap -}}
@ -11,7 +8,7 @@
{{- end -}}
{{/* Render secret for tailscale */}}
{{- $secret := include "tailscale.config" . | fromYaml -}}
{{- $secret := include "tailscale.secret" . | fromYaml -}}
{{- if $secret -}}
{{- $_ := set .Values.secret "tailscale-secret" $secret -}}
{{- end -}}