Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-11-03 16:18:05 +00:00
parent 6fcef85788
commit 4fbc23f5ea
11 changed files with 50 additions and 189 deletions

View File

@@ -2,6 +2,15 @@
## [cloudflared-1.0.26](https://github.com/truecharts/charts/compare/cloudflareddns-1.0.32...cloudflared-1.0.26) (2022-11-03)
### Chore
- Auto-update chart README [skip ci]
## [cloudflared-1.0.25](https://github.com/truecharts/charts/compare/cloudflared-1.0.24...cloudflared-1.0.25) (2022-11-02)
### Chore
@@ -88,12 +97,3 @@
### Chore
- Auto-update chart README [skip ci]
- update helm general non-major
## [cloudflared-1.0.18](https://github.com/truecharts/charts/compare/cloudflared-1.0.17...cloudflared-1.0.18) (2022-10-05)
### Chore

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org
version: 10.7.13
digest: sha256:2f2267115af9bdc61a64db6317564e2d07f4f27ccb0627720c8a63d82b1786b7
generated: "2022-11-02T10:01:27.193446428Z"
generated: "2022-11-03T16:16:21.325142019Z"

View File

@@ -1,28 +1,27 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: cloudflared
version: 1.0.25
appVersion: "2022.10.3"
description: Client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.
type: application
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 10.7.13
deprecated: false
description: Client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.
home: https://truecharts.org/docs/charts/stable/cloudflared
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudflared.png
keywords:
- cloudflared
- networking
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/cloudflared
- https://hub.docker.com/r/cloudflare/cloudflared
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 10.7.13
# condition:
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: cloudflared
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/cloudflared
- https://hub.docker.com/r/cloudflare/cloudflared
type: application
version: 1.0.26
annotations:
truecharts.org/catagories: |
- network

View File

@@ -4,9 +4,13 @@ image:
tag: 2022.10.3@sha256:20455e880d8b5d5a2d83c632c53f83b0924e86e6f0bb587f55d854b188b65742
extraArgs:
["tunnel", "--no-autoupdate", "run", "--token", "{{ .Values.env.token }}"]
- tunnel
- --no-autoupdate
- run
- --token
- "{{ .Values.cloudflared.token }}"
env:
cloudflared:
token: ""
securityContext:
@@ -18,11 +22,10 @@ podSecurityContext:
service:
main:
enabled: false
ports:
main:
protocol: HTTP
targetPort: 6969
port: 6969
enabled: false
probes:
liveness:

View File

@@ -157,16 +157,16 @@ questions:
label: Arg
schema:
type: string
- variable: env
group: "Container Configuration"
label: "Image Environment"
- variable: cloudflared
group: Container Configuration
label: Cloudflared Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: token
label: "Tunnel Token"
description: "Token for tunnel (Tunnel managed by Cloudflare not locally)"
label: Tunnel Token
description: Token for tunnel (Tunnel managed by Cloudflare not locally)
schema:
type: string
required: true
@@ -277,147 +277,6 @@ questions:
label: Value
schema:
type: string
- variable: service
group: Networking and Services
label: Configure Service(s)
schema:
additional_attrs: true
type: dict
attrs:
- variable: main
label: "Main Service"
description: "The Primary service on which the healthcheck runs, often the webUI"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable the Service
schema:
type: boolean
default: true
hidden: true
- variable: type
label: Service Type
description: "ClusterIP's are only internally available and Loadbalancer exposes the service using the system loadbalancer"
schema:
type: string
default: LoadBalancer
enum:
- value: LoadBalancer
description: LoadBalancer (Expose Ports)
- value: ClusterIP
description: ClusterIP (Do Not Expose Ports)
- value: Simple
description: Deprecated CHANGE THIS
- variable: loadBalancerIP
label: LoadBalancer IP
description: "MetalLB Only: Selects the Loadbalancer IP to expose on. Required when using PortalButton with MetalLB"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: string
default: ""
- variable: advancedsvcset
label: Show Advanced Service Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: externalIPs
label: "External IP's"
description: "External IP's"
schema:
type: list
default: []
items:
- variable: externalIP
label: External IP
schema:
type: string
- variable: ipFamilyPolicy
label: IP Family Policy
description: Specify the IP Policy
schema:
type: string
default: SingleStack
enum:
- value: SingleStack
description: SingleStack
- value: PreferDualStack
description: PreferDualStack
- value: RequireDualStack
description: RequireDualStack
- variable: ipFamilies
label: IP Families
description: The IP Families that should be used
schema:
type: list
default: []
items:
- variable: ipFamily
label: IP Family
schema:
type: string
- variable: ports
label: "Service's Port(s) Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: main
label: "Main Service Port Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: "Port"
description: "This port exposes the container port on the service"
schema:
type: int
default: 6969
required: true
- variable: advanced
label: Show Advanced Settings
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: enabled
label: Enable the Port
schema:
type: boolean
hidden: true
default: true
- variable: protocol
label: Port Type
schema:
type: string
default: HTTP
enum:
- value: HTTP
description: HTTP
- value: HTTPS
description: HTTPS
- value: TCP
description: TCP
- value: UDP
description: UDP
- variable: nodePort
label: Node Port (Optional)
description: This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer
schema:
type: int
min: 9000
max: 65535
- variable: targetPort
label: "Target Port"
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 6969
- variable: serviceexpert
group: Networking and Services
label: Show Expert Config
@@ -712,8 +571,8 @@ questions:
type: dict
attrs:
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."
label: App Config Storage
description: Stores the Application Configuration.
schema:
additional_attrs: true
type: dict
@@ -1308,25 +1167,25 @@ questions:
type: dict
attrs:
- variable: privileged
label: "Privileged mode"
label: Privileged mode
schema:
type: boolean
default: false
- variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem"
label: ReadOnly Root Filesystem
schema:
type: boolean
default: true
- variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation"
label: Allow Privilege Escalation
schema:
type: boolean
default: false
- variable: runAsNonRoot
label: "runAsNonRoot"
label: runAsNonRoot
schema:
type: boolean
default: true
default: false
- variable: capabilities
label: Capabilities
schema:
@@ -1361,20 +1220,20 @@ questions:
type: dict
attrs:
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"
label: runAsUser
description: The UserID of the user running the application
schema:
type: int
default: 568
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
label: runAsGroup
description: The groupID this App of the user running the application
schema:
type: int
default: 568
default: 0
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
label: fsGroup
description: The group that should own ALL storage.
schema:
type: int
default: 568