-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
# charts | ||
# usage | ||
|
||
```console | ||
helm repo add jouve https://jouve.github.io/charts/ | ||
``` | ||
|
||
# charts | ||
|
||
| chart | description | | ||
| [jouve/mailpit](charts/mailpit) | Deploy [mailpit](https://github.com/axllent/mailpit): An email and SMTP testing tool with API for developers | | ||
| [jouve/postgresql](charts/postgresql) | Deploy postgresql using [cloudnative-pg](https://cloudnative-pg.io/) operator | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# postgresql | ||
|
||
## usage | ||
|
||
```console | ||
helm repo add jouve https://jouve.github.io/charts/ | ||
``` | ||
|
||
## Parameters | ||
|
||
### Global parameters | ||
|
||
| Name | Description | Value | | ||
| ------------------------------------------- | --------------------------------------------------------------------------- | ------------------ | | ||
| `global.imageRegistry` | Global Docker image registry | `""` | | ||
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` | | ||
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` | | ||
| `replicaCount` | Number of PostgreSQL replicas | `1` | | ||
| `backup.enabled` | Enable backup | `false` | | ||
| `backup.endpointURL` | Endpoint to be used to upload data to the cloud | `""` | | ||
| `backup.bucketName` | Name of the bucket | `""` | | ||
| `backup.existingSecret` | Name of the secret containing the credentials | `""` | | ||
| `backup.objectBucketClaim.enabled` | Create the bucket from an ObjectBucketClaim | `false` | | ||
| `backup.objectBucketClaim.storageClassName` | StorageClass for the ObjectBucketClaim | `""` | | ||
| `persistence.storageClass` | PVC Storage Class for PostgreSQL Primary data volume | `""` | | ||
| `persistence.size` | PVC Storage Request for PostgreSQL volume | `8Gi` | | ||
| `networkPolicy.enabled` | Enable network policies | `false` | | ||
| `networkPolicy.apiServerPeer` | networkPolicyPeer of the apiserver | `{}` | | ||
| `networkPolicy.cnpgPeer` | networkPolicyPeer of the operator | `{}` | | ||
| `networkPolicy.objectStoragePeer` | networkPolicyPeer of the object storage (see backup) | `{}` | | ||
| `networkPolicy.egressRules` | additional egress rules | `[]` | | ||
| `networkPolicy.ingressRules` | additional ingress rules | `[]` | | ||
| `certificates.mode` | manage certificates by the operator or cert-manager | `operator-manager` | | ||
| `certificates.issuerRef` | cert-manager issuer for certificates. selfSigned issuer is created if empty | `{}` | | ||
|
||
### Metrics Parameters | ||
|
||
| Name | Description | Value | | ||
| ---------------------------- | ------------------------------------------------------------------------- | ------- | | ||
| `metrics.enabled` | Start a prometheus exporter | `false` | | ||
| `metrics.podMonitor.enabled` | Create PodMonitor Resource for scraping metrics using Prometheus Operator | `false` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters