Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-04-29 17:42:25 +00:00
parent 319dae9bc0
commit b946454743
12 changed files with 300 additions and 317 deletions

View File

@ -4,6 +4,15 @@
## [microbin-2.0.10](https://github.com/truecharts/charts/compare/microbin-2.0.9...microbin-2.0.10) (2023-04-29)
### Chore
- update container image tccr.io/truecharts/microbin to v1.2.1 ([#8487](https://github.com/truecharts/charts/issues/8487))
## [microbin-2.0.9](https://github.com/truecharts/charts/compare/microbin-2.0.8...microbin-2.0.9) (2023-02-10) ## [microbin-2.0.9](https://github.com/truecharts/charts/compare/microbin-2.0.8...microbin-2.0.9) (2023-02-10)
### Fix ### Fix
@ -88,12 +97,3 @@
## [microbin-2.0.2](https://github.com/truecharts/charts/compare/microbin-2.0.1...microbin-2.0.2) (2022-11-30) ## [microbin-2.0.2](https://github.com/truecharts/charts/compare/microbin-2.0.1...microbin-2.0.2) (2022-11-30)
## [microbin-2.0.2](https://github.com/truecharts/charts/compare/microbin-2.0.1...microbin-2.0.2) (2022-11-30)

View File

@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
appVersion: "1.2.0" appVersion: "1.2.1"
dependencies: dependencies:
- name: common - name: common
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
@ -17,9 +17,8 @@ maintainers:
name: microbin name: microbin
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/microbin - https://github.com/truecharts/charts/tree/master/charts/incubator/microbin
- https://hub.docker.com/r/danielszabo99/microbin
- https://github.com/szabodanika/microbin - https://github.com/szabodanika/microbin
version: 2.0.9 version: 2.0.10
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- utility - utility

View File

@ -0,0 +1,9 @@
## [microbin-2.0.10](https://github.com/truecharts/charts/compare/microbin-2.0.9...microbin-2.0.10) (2023-04-29)
### Chore
- update container image tccr.io/truecharts/microbin to v1.2.1 ([#8487](https://github.com/truecharts/charts/issues/8487))

View File

@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/microbin repository: tccr.io/truecharts/microbin
tag: 1.2.0@sha256:0753046903c030087aa16e55390d9e5d6ef9add99b5e61910c4dbd144cdb2bf1 tag: 1.2.1@sha256:cce07938a2717a3f2af80abb1476d61db47520bba87b5121c04efa339269e947
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
microbin: microbin:

View File

@ -3,6 +3,8 @@ groups:
description: Image to be used for container description: Image to be used for container
- name: General Settings - name: General Settings
description: General Deployment Settings description: General Deployment Settings
- name: Workload Settings
description: Workload Settings
- name: App Configuration - name: App Configuration
description: App Specific Config Options description: App Specific Config Options
- name: Networking and Services - name: Networking and Services
@ -19,69 +21,123 @@ groups:
description: Traefik Middlewares description: Traefik Middlewares
- name: Metrics - name: Metrics
description: Metrics description: Metrics
- name: VPN
description: VPN
- name: Addons - name: Addons
description: Addon Configuration description: Addon Configuration
- name: Advanced - name: Advanced
description: Advanced Configuration description: Advanced Configuration
- name: Postgresql
description: Postgresql
- name: Documentation - name: Documentation
description: Documentation description: Documentation
portals: portals:
open: open:
protocols: protocols:
- "$kubernetes-resource_configmap_portal_protocol" - "$kubernetes-resource_configmap_tcportal-open_protocol"
host: host:
- "$kubernetes-resource_configmap_portal_host" - "$kubernetes-resource_configmap_tcportal-open_host"
ports: ports:
- "$kubernetes-resource_configmap_portal_port" - "$kubernetes-resource_configmap_tcportal-open_port"
questions: questions:
- variable: global
label: Global Settings - variable: workload
group: "General Settings" group: "Workload Settings"
schema:
type: dict
hidden: true
attrs:
- variable: isSCALE
label: Flag this is SCALE
schema:
type: boolean
default: true
hidden: true
- variable: controller
group: "General Settings"
label: "" label: ""
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: replicas - variable: main
description: Number of desired pod replicas label: ""
label: Desired Replicas
schema: schema:
type: int additional_attrs: true
required: true type: dict
default: 1 attrs:
- variable: customextraargs - variable: type
group: "General Settings" label: Type (Advanced)
label: "Extra Args"
description: "Do not click this unless you know what you are doing"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: extraArgs
label: Extra Args
schema:
type: list
default: []
items:
- variable: arg
label: Arg
schema: schema:
type: string type: string
default: Deployment
enum:
- value: Deployment
description: Deployment
- value: DaemonSet
description: DaemonSet
- variable: replicas
label: Replicas (Advanced)
description: Set the number of Replicas
schema:
type: int
show_if: [["type", "!=", "DaemonSet"]]
default: 1
- variable: podSpec
label: ""
schema:
additional_attrs: true
type: dict
attrs:
- variable: containers
label: Containers
schema:
additional_attrs: true
type: dict
attrs:
- variable: main
label: Main Container
schema:
additional_attrs: true
type: dict
attrs:
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
schema:
type: list
default: []
items:
- variable: envItem
label: Environment Variable
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: extraArgs
label: Extra Args
schema:
type: list
default: []
items:
- variable: arg
label: Arg
schema:
type: string
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: command
label: Command
schema:
type: list
default: []
items:
- variable: param
label: Param
schema:
type: string
- variable: microbin - variable: microbin
group: App Configuration group: App Configuration
label: Microbin Configuration label: Microbin Configuration
@ -190,28 +246,6 @@ questions:
default: "Etc/UTC" default: "Etc/UTC"
$ref: $ref:
- "definitions/timezone" - "definitions/timezone"
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
group: "General Settings"
schema:
type: list
default: []
items:
- variable: envItem
label: Environment Variable
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: service - variable: service
group: Networking and Services group: Networking and Services
label: Configure Service(s) label: Configure Service(s)
@ -243,8 +277,6 @@ questions:
description: LoadBalancer (Expose Ports) description: LoadBalancer (Expose Ports)
- value: ClusterIP - value: ClusterIP
description: ClusterIP (Do Not Expose Ports) description: ClusterIP (Do Not Expose Ports)
- value: Simple
description: Deprecated CHANGE THIS
- variable: loadBalancerIP - variable: loadBalancerIP
label: LoadBalancer IP label: LoadBalancer IP
description: "MetalLB Only: Selects the Loadbalancer IP to expose on. Required when using PortalButton with MetalLB" description: "MetalLB Only: Selects the Loadbalancer IP to expose on. Required when using PortalButton with MetalLB"
@ -283,9 +315,10 @@ questions:
group: Networking and Services group: Networking and Services
label: Host-Networking (Complicated) label: Host-Networking (Complicated)
schema: schema:
hidden: true
type: boolean type: boolean
default: false default: false
- variable: externalInterfaces - variable: scaleExternalInterface
description: Add External Interfaces description: Add External Interfaces
label: Add external Interfaces label: Add external Interfaces
group: Networking group: Networking
@ -326,41 +359,41 @@ questions:
description: Use DHCP description: Use DHCP
- value: static - value: static
description: Use Static IP description: Use Static IP
show_subquestions_if: static - variable: staticIPConfigurations
subquestions: label: Static IP Addresses
- variable: staticIPConfigurations schema:
label: Static IP Addresses type: list
show_if: [["type", "=", "static"]]
items:
- variable: staticIP
label: Static IP
schema: schema:
type: list type: ipaddr
items: cidr: true
- variable: staticIP - variable: staticRoutes
label: Static IP label: Static Routes
schema:
type: list
show_if: [["type", "=", "static"]]
items:
- variable: staticRouteConfiguration
label: Static Route Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: destination
label: Destination
schema: schema:
type: ipaddr type: ipaddr
cidr: true cidr: true
- variable: staticRoutes required: true
label: Static Routes - variable: gateway
schema: label: Gateway
type: list
items:
- variable: staticRouteConfiguration
label: Static Route Configuration
schema: schema:
additional_attrs: true type: ipaddr
type: dict cidr: false
attrs: required: true
- variable: destination
label: Destination
schema:
type: ipaddr
cidr: true
required: true
- variable: gateway
label: Gateway
schema:
type: ipaddr
cidr: false
required: true
- variable: serviceList - variable: serviceList
label: Add Manual Custom Services label: Add Manual Custom Services
group: Networking and Services group: Networking and Services
@ -474,15 +507,15 @@ questions:
label: Port Type label: Port Type
schema: schema:
type: string type: string
default: TCP default: tcp
enum: enum:
- value: HTTP - value: http
description: HTTP description: HTTP
- value: HTTPS - value: https
description: HTTPS description: HTTPS
- value: TCP - value: tcp
description: TCP description: TCP
- value: UDP - value: udp
description: UDP description: UDP
- variable: targetPort - variable: targetPort
label: Target Port label: Target Port
@ -724,8 +757,8 @@ questions:
type: string type: string
required: true required: true
default: Prefix default: Prefix
- variable: clusterIssuer - variable: certificateIssuer
label: clusterIssuer label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below' description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema: schema:
type: string type: string
@ -734,7 +767,7 @@ questions:
label: TLS-Settings label: TLS-Settings
schema: schema:
type: list type: list
show_if: [["clusterIssuer", "=", ""]] show_if: [["certificateIssuer", "=", ""]]
default: [] default: []
items: items:
- variable: tlsEntry - variable: tlsEntry
@ -756,7 +789,7 @@ questions:
default: "" default: ""
required: true required: true
- variable: clusterIssuer - variable: certificateIssuer
label: Use Cert-Manager clusterIssuer label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.' description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema: schema:
@ -765,14 +798,14 @@ questions:
- variable: scaleCert - variable: scaleCert
label: Use TrueNAS SCALE Certificate (Deprecated) label: Use TrueNAS SCALE Certificate (Deprecated)
schema: schema:
show_if: [["clusterIssuer", "=", ""]] show_if: [["certificateIssuer", "=", ""]]
type: int type: int
$ref: $ref:
- "definitions/certificate" - "definitions/certificate"
- variable: secretName - variable: secretName
label: Use Custom Secret (Advanced) label: Use Custom Secret (Advanced)
schema: schema:
show_if: [["clusterIssuer", "=", ""]] show_if: [["certificateIssuer", "=", ""]]
type: string type: string
default: "" default: ""
- variable: entrypoint - variable: entrypoint
@ -956,74 +989,21 @@ questions:
type: string type: string
default: "" default: ""
required: true required: true
- variable: security - variable: securityContext
label: Container Security Settings
group: Security and Permissions group: Security and Permissions
label: Security Context
schema: schema:
type: dict
additional_attrs: true additional_attrs: true
type: dict
attrs: attrs:
- variable: editsecurity - variable: container
label: Change PUID / UMASK values label: Container
description: By enabling this you override default set values.
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: PUID
label: Process User ID - PUID
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
default: 568
- variable: UMASK
label: UMASK
description: When supported by the container, this sets the UMASK for the App. Not supported by all Apps
schema:
type: string
default: "002"
- variable: advancedSecurity
label: Show Advanced Security Settings
group: Security and Permissions
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: securityContext
label: Security Context
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: privileged # Settings from questions.yaml get appended here on a per-app basis
label: Privileged mode
schema:
type: boolean
default: false
- variable: readOnlyRootFilesystem
label: ReadOnly Root Filesystem
schema:
type: boolean
default: true
- variable: allowPrivilegeEscalation
label: Allow Privilege Escalation
schema:
type: boolean
default: false
- variable: runAsNonRoot
label: runAsNonRoot
schema:
type: boolean
default: true
- variable: podSecurityContext
group: Security and Permissions
label: Pod Security Context
schema:
additional_attrs: true
type: dict
attrs:
- variable: runAsUser - variable: runAsUser
label: runAsUser label: runAsUser
description: The UserID of the user running the application description: The UserID of the user running the application
@ -1036,32 +1016,72 @@ questions:
schema: schema:
type: int type: int
default: 568 default: 568
# Settings from questions.yaml get appended here on a per-app basis
- variable: PUID
label: Process User ID - PUID
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "=", 0]]
default: 568
- variable: UMASK
label: UMASK
description: When supported by the container, this sets the UMASK for the App. Not supported by all Apps
schema:
type: string
default: "0022"
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: privileged
label: "Privileged mode"
schema:
type: boolean
default: false
- variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem"
schema:
type: boolean
default: true
- variable: pod
label: Pod
schema:
additional_attrs: true
type: dict
attrs:
- variable: fsGroupChangePolicy
label: "When should we take ownership?"
schema:
type: string
default: OnRootMismatch
enum:
- value: OnRootMismatch
description: OnRootMismatch
- value: Always
description: Always
- variable: supplementalGroups
label: Supplemental Groups
schema:
type: list
default: []
items:
- variable: supplementalGroupsEntry
label: Supplemental Group
schema:
type: int
# Settings from questions.yaml get appended here on a per-app basis
- variable: fsGroup - variable: fsGroup
label: fsGroup label: fsGroup
description: The group that should own ALL storage. description: The group that should own ALL storage.
schema: schema:
type: int type: int
default: 568 default: 568
- variable: fsGroupChangePolicy
label: "When should we take ownership?"
schema:
type: string
default: OnRootMismatch
enum:
- value: OnRootMismatch
description: OnRootMismatch
- value: Always
description: Always
- variable: supplementalGroups
label: Supplemental Groups
schema:
type: list
default: []
items:
- variable: supplementalGroupsEntry
label: Supplemental Group
schema:
type: int
- variable: resources - variable: resources
group: Resources and Devices group: Resources and Devices
label: "Resource Limits" label: "Resource Limits"
@ -1135,7 +1155,7 @@ questions:
description: Sets the persistence type description: Sets the persistence type
schema: schema:
type: string type: string
default: hostPath default: device
hidden: true hidden: true
- variable: readOnly - variable: readOnly
label: readOnly label: readOnly
@ -1153,15 +1173,33 @@ questions:
schema: schema:
type: string type: string
default: "/dev/ttyACM0" default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU - variable: scaleGPU
label: GPU Configuration label: GPU Configuration
group: Resources and Devices group: Resources and Devices
schema: schema:
type: dict type: list
$ref: default: []
- "definitions/gpuConfiguration" items:
attrs: [] - variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
- variable: workaround
label: "Workaround"
schema:
type: string
default: workaround
hidden: true
# - variable: horizontalPodAutoscaler # - variable: horizontalPodAutoscaler
# group: Advanced # group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler # label: (Advanced) Horizontal Pod Autoscaler
@ -1612,22 +1650,6 @@ questions:
default: false default: false
show_subquestions_if: true show_subquestions_if: true
subquestions: subquestions:
- variable: git
label: Git Settings
schema:
additional_attrs: true
type: dict
attrs:
- variable: deployKey
description: Raw SSH Private Key
label: Deploy Key
schema:
type: string
- variable: deployKeyBase64
description: Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence
label: Deploy Key Base64
schema:
type: string
- variable: service - variable: service
label: "" label: ""
schema: schema:
@ -1654,48 +1676,6 @@ questions:
show_if: [["type", "=", "LoadBalancer"]] show_if: [["type", "=", "LoadBalancer"]]
type: string type: string
default: "" 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: (Advanced) The IP Families that should be used
schema:
type: list
default: []
items:
- variable: ipFamily
label: IP Family
schema:
type: string
- variable: ports - variable: ports
label: "" label: ""
schema: schema:
@ -1713,12 +1693,6 @@ questions:
schema: schema:
type: int type: int
default: 36107 default: 36107
- variable: nodePort
description: Leave Empty to Disable
label: nodePort DEPRECATED
schema:
type: int
default: 36107
- variable: envList - variable: envList
label: Codeserver Environment Variables label: Codeserver Environment Variables
schema: schema:
@ -1742,6 +1716,42 @@ questions:
schema: schema:
type: string type: string
required: true required: true
- variable: netshoot
label: Netshoot
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: envList
label: Netshoot Environment Variables
schema:
type: list
show_if: [["type", "!=", "disabled"]]
default: []
items:
- variable: envItem
label: Environment Variable
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
required: true
- variable: value
label: Value
schema:
type: string
required: true
- variable: vpn - variable: vpn
label: VPN label: VPN
schema: schema:
@ -1756,12 +1766,14 @@ questions:
enum: enum:
- value: disabled - value: disabled
description: disabled description: disabled
- value: openvpn - value: gluetun
description: OpenVPN description: Gluetun
- value: wireguard
description: Wireguard
- value: tailscale - value: tailscale
description: Tailscale description: Tailscale
- value: openvpn
description: OpenVPN (Deprecated)
- value: wireguard
description: Wireguard (Deprecated)
- variable: openvpn - variable: openvpn
label: OpenVPN Settings label: OpenVPN Settings
schema: schema:
@ -1779,6 +1791,7 @@ questions:
description: Authentication Credentials description: Authentication Credentials
schema: schema:
type: string type: string
show_if: [["username", "!=", ""]]
default: "" default: ""
required: true required: true
- variable: tailscale - variable: tailscale
@ -1883,39 +1896,10 @@ questions:
- variable: configFile - variable: configFile
label: VPN Config File Location label: VPN Config File Location
schema: schema:
type: dict type: string
show_if: [["type", "!=", "disabled"]] show_if: [["type", "!=", "disabled"]]
attrs: default: ""
- variable: enabled
label: Enabled
schema:
type: boolean
default: true
hidden: true
- variable: type
label: Type
schema:
type: string
default: hostPath
hidden: true
- variable: hostPathType
label: hostPathType
schema:
type: string
default: File
hidden: true
- variable: noMount
label: noMount
schema:
type: boolean
default: true
hidden: true
- variable: hostPath
label: Full Path to File
description: "Path to your local VPN config file for example: /mnt/tank/vpn.conf or /mnt/tank/vpn.ovpn"
schema:
type: string
default: ""
- variable: envList - variable: envList
label: VPN Environment Variables label: VPN Environment Variables
schema: schema:

View File

@ -1,9 +0,0 @@
## [microbin-2.0.9](https://github.com/truecharts/charts/compare/microbin-2.0.8...microbin-2.0.9) (2023-02-10)
### Fix
- ensure new helm deps repo is used in latest releases as well.