Skip to content

Commit

Permalink
Merge pull request #183 from one-acre-fund/feature/configure-n8n-moun…
Browse files Browse the repository at this point in the history
…t-path

make the volume mont paths configurable
  • Loading branch information
bisonlou authored Jan 16, 2024
2 parents 7838985 + 7715670 commit 4914721
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 34 deletions.
2 changes: 1 addition & 1 deletion charts/apicurio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: apicurio
version: 1.0.14
version: 1.0.15
description: Apicurio Studio API designer
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
type: application
Expand Down
3 changes: 1 addition & 2 deletions charts/apicurio/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# apicurio

![Version: 1.0.13](https://img.shields.io/badge/Version-1.0.13-informational?style=flat-square)
![Version: 1.0.15](https://img.shields.io/badge/Version-1.0.15-informational?style=flat-square)

Apicurio Studio API designer

Expand Down Expand Up @@ -81,7 +81,6 @@ For more details, see [this ticket](https://github.com/Apicurio/apicurio-studio/
| ui.extraEnvVars | object | See `values.yaml` and [container docs](https://hub.docker.com/r/apicurio/apicurio-studio-ui/) | Dictionary of name/value environment var pairs Will be evaluated as templates |
| ui.extraEnvVars.APICURIO_LOGGING_LEVEL | string | `"INFO"` | UI logging level |
| ui.extraEnvVars.APICURIO_UI_FEATURE_MICROCKS | string | `"false"` | Enable Microcks integration? |
| ui.extraEnvVars.APICURIO_UI_LOGOUT_REDIRECT_URI | string | `"/"` | Redirect URI |
| ui.extraEnvVars.APICURIO_UI_VALIDATION_CHANNELNAME_REGEXP | string | `"([^{}\\/]*(\\{[a-zA-Z_][0-9a-zA-Z_]*\\})?)+"` | Channel Regex |
| ui.extraEnvVars.JAVA_TOOL_OPTIONS | string | `"-Djava.net.preferIPv4Stack=true"` | UI JVM options |
| ui.extraSecretEnvVars | object | `{}` | Same as `envVars` but passed as secrets |
Expand Down
2 changes: 1 addition & 1 deletion charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 0.1.47
version: 0.1.49

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 3 additions & 1 deletion charts/n8n/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# n8n

![Version: 0.1.47](https://img.shields.io/badge/Version-0.1.47-informational?style=flat-square)
![Version: 0.1.49](https://img.shields.io/badge/Version-0.1.49-informational?style=flat-square)

A Helm chart for n8n

Expand Down Expand Up @@ -77,7 +77,9 @@ $ helm install my-release one-acre-fund/n8n
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| persistence.accessModes[0] | string | `"ReadWriteOnce"` | |
| persistence.configMountPath | string | `"/n8n-config"` | |
| persistence.enabled | bool | `false` | |
| persistence.secretMountPath | string | `"/n8n-secret"` | |
| persistence.size | string | `"1Gi"` | |
| persistence.type | string | `"emptyDir"` | |
| podAnnotations | object | `{}` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/n8n/templates/deployment-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ spec:
{{- end }}
{{- if .Values.config }}
- name: config-volume
mountPath: /n8n-config
mountPath: {{ .Values.persistence.configMountPath}}
{{- end }}
{{- if .Values.secret }}
- name: secret-volume
mountPath: /n8n-secret
mountPath: {{ .Values.persistence.secretMountPath}}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
4 changes: 2 additions & 2 deletions charts/n8n/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ spec:
{{- end }}
{{- if .Values.config }}
- name: config-volume
mountPath: /n8n-config
mountPath: {{ .Values.persistence.configMountPath}}
{{- end }}
{{- if .Values.secret }}
- name: secret-volume
mountPath: /n8n-secret
mountPath: {{ .Values.persistence.secretMountPath}}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
2 changes: 2 additions & 0 deletions charts/n8n/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ persistence:
## Use an existing PVC
##
# existingClaim:
configMountPath: /n8n-config
secretMountPath: /n8n-secret

replicaCount: 1

Expand Down
2 changes: 1 addition & 1 deletion charts/pgbouncer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: pgbouncer
description: A Helm chart for deploying bitnami/pgbouncer with TLS encryption
version: 0.1.7
version: 0.1.8
appVersion: 1.19.1
type: application
maintainers:
Expand Down
48 changes: 24 additions & 24 deletions charts/pgbouncer/README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
# PgBouncer

![Version: 0.1.7](https://img.shields.io/badge/Version-0.1.7-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![AppVersion: 1.19.1](https://img.shields.io/badge/AppVersion-1.19.1-informational?style=flat-square)

A Helm chart for deploying bitnami/pgbouncer with TLS encryption

**Homepage:** <https://github.com/one-acre-fund/oaf-public-charts>

# PgBouncer

![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![AppVersion: 1.19.1](https://img.shields.io/badge/AppVersion-1.19.1-informational?style=flat-square)

A Helm chart for deploying bitnami/pgbouncer with TLS encryption

**Homepage:** <https://github.com/one-acre-fund/oaf-public-charts>

## Maintainers

| Name | Email | Url |
| ---- | ------ | --- |
| Rahma | <rahma.ahmed@oneacrefund.org> | <https://github.com/samaroon> |

| Rahma | <rahma.ahmed@oneacrefund.org> | <https://github.com/samaroon> |

## Source Code

* <https://github.com/one-acre-fund/oaf-public-charts>
* <https://bitnami.com/stack/pgbouncer>

## TL;DR

[pgbouncer](https://www.pgbouncer.org/) is a lightweight connection pooler for PostgreSQL.

```console
helm repo add one-acre-fund https://one-acre-fund.github.io/oaf-public-charts
helm install pgbouncer one-acre-fund/pgbouncer
```

* <https://bitnami.com/stack/pgbouncer>

## TL;DR

[pgbouncer](https://www.pgbouncer.org/) is a lightweight connection pooler for PostgreSQL.

```console
helm repo add one-acre-fund https://one-acre-fund.github.io/oaf-public-charts
helm install pgbouncer one-acre-fund/pgbouncer
```

## Values

| Key | Type | Default | Description |
Expand Down Expand Up @@ -76,4 +76,4 @@ helm install pgbouncer one-acre-fund/pgbouncer
| tls.certFilename | string | `"tls.crt"` | |
| tls.certKeyFilename | string | `"tls.key"` | |
| tls.certificatesSecret | string | `"oaf-tls"` | |
| tls.enabled | bool | `true` | |
| tls.enabled | bool | `true` | |

0 comments on commit 4914721

Please sign in to comment.