chore(postgresql): update values
This commit is contained in:
parent
39a5510e5b
commit
b82543a248
4 changed files with 46 additions and 21 deletions
|
@ -5,6 +5,11 @@ description: "A Helm chart for running PostgreSQL (Postgres) database"
|
||||||
type: "application"
|
type: "application"
|
||||||
version: "0.1.3"
|
version: "0.1.3"
|
||||||
appVersion: "16.1-alpine3.18"
|
appVersion: "16.1-alpine3.18"
|
||||||
|
icon: https://wiki.postgresql.org/images/a/a4/PostgreSQL_logo.3colors.svg
|
||||||
|
maintainers:
|
||||||
|
- name: WrenIX
|
||||||
|
url: https://wrenix.eu
|
||||||
|
|
||||||
|
|
||||||
keywords:
|
keywords:
|
||||||
- "postgresql"
|
- "postgresql"
|
||||||
|
|
|
@ -5,6 +5,16 @@
|
||||||
image::https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square[Version: 0.1.3]
|
image::https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square[Version: 0.1.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-16.1-alpine3.18-informational?style=flat-square[AppVersion: 16.1-alpine3.18]
|
image::https://img.shields.io/badge/AppVersion-16.1-alpine3.18-informational?style=flat-square[AppVersion: 16.1-alpine3.18]
|
||||||
|
== Maintainers
|
||||||
|
|
||||||
|
.Maintainers
|
||||||
|
|===
|
||||||
|
| Name | Email | Url
|
||||||
|
|
||||||
|
| WrenIX
|
||||||
|
|
|
||||||
|
| <https://wrenix.eu>
|
||||||
|
|===
|
||||||
|
|
||||||
== Usage
|
== Usage
|
||||||
|
|
||||||
|
@ -127,11 +137,26 @@ helm uninstall postgresql-release
|
||||||
| `true`
|
| `true`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| 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`
|
||||||
|
| Do not create an PVC, direct use hostPath in Pod
|
||||||
|
|
||||||
| persistence.size
|
| persistence.size
|
||||||
| string
|
| string
|
||||||
| `"1Gi"`
|
| `"1Gi"`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| persistence.storageClass
|
||||||
|
| string
|
||||||
|
| `nil`
|
||||||
|
| 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
|
||||||
| `{}`
|
| `{}`
|
||||||
|
|
|
@ -58,28 +58,26 @@ tolerations: []
|
||||||
|
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
## Enable persistence using Persistent Volume Claims
|
# Enable persistence using Persistent Volume Claims
|
||||||
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
# ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
||||||
##
|
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations: {}
|
annotations: {}
|
||||||
## Persistent Volume Storage Class
|
# -- 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:
|
||||||
|
|
||||||
## Do not create an PVC, direct use hostPath in Pod
|
# -- Do not create an PVC, direct use hostPath in Pod
|
||||||
# hostPath:
|
hostPath:
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
|
|
||||||
|
@ -103,6 +101,7 @@ job:
|
||||||
annotations:
|
annotations:
|
||||||
"helm.sh/hook": "post-install,post-upgrade"
|
"helm.sh/hook": "post-install,post-upgrade"
|
||||||
"helm.sh/hook-delete-policy": "before-hook-creation,hook-succeeded"
|
"helm.sh/hook-delete-policy": "before-hook-creation,hook-succeeded"
|
||||||
|
|
||||||
# -- Bootstrap users into postgresql server. When users already exists, they will stay untouched.
|
# -- Bootstrap users into postgresql server. When users already exists, they will stay untouched.
|
||||||
#
|
#
|
||||||
# users:
|
# users:
|
||||||
|
@ -116,5 +115,3 @@ job:
|
||||||
# owner: "existing_user_which_will_get_grant"
|
# owner: "existing_user_which_will_get_grant"
|
||||||
# additionalParams: "" # Optional
|
# additionalParams: "" # Optional
|
||||||
databases: {}
|
databases: {}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@ for p in * ; do
|
||||||
[ $p == "jellyfin" ] || \
|
[ $p == "jellyfin" ] || \
|
||||||
[ $p == "monitoring" ] || \
|
[ $p == "monitoring" ] || \
|
||||||
[ $p == "ntfy" ] || \
|
[ $p == "ntfy" ] || \
|
||||||
[ $p == "postgresql" ] || \
|
|
||||||
[ $p == "stalwart" ] || \
|
|
||||||
[ ! -d $p ] || \
|
[ ! -d $p ] || \
|
||||||
[ ! -f $p/Chart.yaml ] \
|
[ ! -f $p/Chart.yaml ] \
|
||||||
; then
|
; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue