fix(miniserve): update appVersion

This commit is contained in:
WrenIX 2024-01-12 23:52:52 +01:00
parent 182a7f9c7b
commit 663cde4d1a
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
5 changed files with 52 additions and 31 deletions

View file

@ -3,8 +3,12 @@ ROOT_DIR="./docs/modules/charts/"
echo "* charts" > "${ROOT_DIR}/nav.adoc" echo "* charts" > "${ROOT_DIR}/nav.adoc"
for name in * ; do for name in * ; do
[ ! -d $name ] && continue if \
[ $name == "docs" ] && continue [ ! -d $name ] || \
[ ! -f $name/Chart.yaml ] \
; then
continue;
fi
ln -sf "../../../../${name}/README.adoc" "${ROOT_DIR}/pages/${name}.adoc"; ln -sf "../../../../${name}/README.adoc" "${ROOT_DIR}/pages/${name}.adoc";
echo "** xref:${name}.adoc[${name}]" >> "${ROOT_DIR}/nav.adoc" echo "** xref:${name}.adoc[${name}]" >> "${ROOT_DIR}/nav.adoc"
done done

View file

@ -2,6 +2,10 @@ apiVersion: v2
name: miniserve name: miniserve
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
type: application type: application
version: 0.3.2 version: 0.3.3
icon: https://raw.githubusercontent.com/svenstaro/miniserve/master/data/logo.svg
maintainers:
- name: WrenIX
url: https://wrenix.eu
appVersion: "0.24.0" appVersion: "0.25.0"

View file

@ -2,9 +2,9 @@
= miniserve = miniserve
image::https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square[Version: 0.3.2] image::https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square[Version: 0.3.3]
image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application]
image::https://img.shields.io/badge/AppVersion-0.24.0-informational?style=flat-square[AppVersion: 0.24.0] image::https://img.shields.io/badge/AppVersion-0.25.0-informational?style=flat-square[AppVersion: 0.25.0]
== Usage == Usage
@ -287,11 +287,26 @@ helm uninstall miniserve-release
| `false` | `false`
| |
| persistence.existingClaim
| string
| `nil`
| A manually managed Persistent Volume and Claim Requires persistence.enabled: true If defined, PVC must be created manually before volume will be bound
| persistence.hostPath
| string
| `nil`
|
| persistence.size | persistence.size
| string | string
| `"1Gi"` | `"1Gi"`
| |
| persistence.storageClass
| string
| `nil`
| data Persistent Volume Storage Class If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack)
| podAnnotations | podAnnotations
| object | object
| `{}` | `{}`
@ -345,17 +360,17 @@ helm uninstall miniserve-release
| serviceAccount.annotations | serviceAccount.annotations
| object | object
| `{}` | `{}`
| | Annotations to add to the service account
| serviceAccount.create | serviceAccount.create
| bool | bool
| `true` | `true`
| | Specifies whether a service account should be created
| serviceAccount.name | serviceAccount.name
| string | string
| `""` | `""`
| | If not set and create is true, a name is generated using the fullname template
| tolerations | tolerations
| list | list

View file

@ -80,32 +80,32 @@ data:
persistence: persistence:
enabled: false enabled: false
annotations: {} annotations: {}
## data Persistent Volume Storage Class # -- data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass> # If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning # If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is # If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on # set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack) # GKE, AWS & OpenStack)
## #
# storageClass: "-" storageClass:
## A manually managed Persistent Volume and Claim # -- A manually managed Persistent Volume and Claim
## Requires persistence.enabled: true # Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound # If defined, PVC must be created manually before volume will be bound
# existingClaim: existingClaim:
## use container hostPatch or an PV if you set storageClass to manual ## use container hostPatch or an PV if you set storageClass to manual
# hostPath: hostPath:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 1Gi size: 1Gi
serviceAccount: serviceAccount:
# Specifies whether a service account should be created # -- Specifies whether a service account should be created
create: true create: true
# Annotations to add to the service account # -- Annotations to add to the service account
annotations: {} annotations: {}
# The name of the service account to use. # -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template # -- If not set and create is true, a name is generated using the fullname template
name: "" name: ""
podLabels: {} podLabels: {}

View file

@ -19,17 +19,15 @@ for p in * ; do
[ $p == "headscale-ui" ] || \ [ $p == "headscale-ui" ] || \
[ $p == "forgejo-runner" ] || \ [ $p == "forgejo-runner" ] || \
[ $p == "jellyfin" ] || \ [ $p == "jellyfin" ] || \
[ $p == "miniserve" ] || \
[ $p == "monitoring" ] || \ [ $p == "monitoring" ] || \
[ $p == "ntfy" ] || \ [ $p == "ntfy" ] || \
[ $p == "postgresql" ] || \ [ $p == "postgresql" ] || \
[ $p == "docs" ] \ [ $p == "stalwart" ] || \
[ ! -d $p ] || \
[ ! -f $p/Chart.yaml ] \
; then ; then
continue continue
fi fi
if [ ! -d $p ]; then
continue;
fi
echo "${p}:"; echo "${p}:";