Skip to content

Commit

Permalink
Merge pull request #144 from one-acre-fund/fix/kutt
Browse files Browse the repository at this point in the history
Fix/kutt
  • Loading branch information
bisonlou authored Nov 24, 2022
2 parents cd46905 + 25ca989 commit 81728b5
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 28 deletions.
2 changes: 1 addition & 1 deletion charts/growthbook/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.10
version: 0.1.11

# 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: 2 additions & 2 deletions charts/growthbook/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# growthbook

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

A Helm chart for Growthbook

Expand Down Expand Up @@ -87,4 +87,4 @@ A Helm chart for Growthbook
| volume.name | string | `"uploads-persistent-storage"` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
Autogenerated from chart metadata using [helm-docs v1.8.1](https://github.com/norwoodj/helm-docs/releases/v1.8.1)
2 changes: 1 addition & 1 deletion charts/kutt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.8
version: 0.2.0

# 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
20 changes: 11 additions & 9 deletions charts/kutt/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kutt

![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.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down Expand Up @@ -69,14 +69,16 @@ A Helm chart for Kubernetes
| redis.existingSecret | string | `"redis"` | |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| secretEnv.GOOGLE_ANALYTICS | string | `"xxx"` | |
| secretEnv.GOOGLE_ANALYTICS_UNIVERSAL | string | `"xxx"` | |
| secretEnv.GOOGLE_SAFE_BROWSING_KEY | string | `"xxx"` | |
| secretEnv.JWT_SECRET | string | `"xxx"` | |
| secretEnv.MAIL_PASSWORD | string | `"xxx"` | |
| secretEnv.MAIL_USER | string | `"xxx"` | |
| secretEnv.RECAPTCHA_SECRET_KEY | string | `"xxx"` | |
| secretEnv.RECAPTCHA_SITE_KEY | string | `"xxx"` | |
| secretEnv.GOOGLE_ANALYTICS | string | `""` | |
| secretEnv.GOOGLE_ANALYTICS_UNIVERSAL | string | `""` | |
| secretEnv.GOOGLE_SAFE_BROWSING_KEY | string | `""` | |
| secretEnv.JWT_SECRET | string | `""` | |
| secretEnv.MAIL_PASSWORD | string | `""` | |
| secretEnv.MAIL_USER | string | `""` | |
| secretEnv.RECAPTCHA_SECRET_KEY | string | `""` | |
| secretEnv.RECAPTCHA_SITE_KEY | string | `""` | |
| secretEnv.SENTRY_PRIVATE_DSN | string | `""` | |
| secretEnv.SENTRY_PUBLIC_DSN | string | `""` | |
| securityContext | object | `{}` | |
| service.port | int | `10195` | |
| service.type | string | `"ClusterIP"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/kutt/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ metadata:
{{- include "kutt.labels" . | nindent 4 }}
data:
{{- range $key, $val := .Values.secretEnv }}
{{ $key }}: {{ b64enc $val }}
{{ $key }}: {{ $val | quote | b64enc }}
{{- end }}
18 changes: 10 additions & 8 deletions charts/kutt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,16 @@ resources: {}
# memory: 128Mi

secretEnv:
GOOGLE_ANALYTICS: "xxx"
GOOGLE_ANALYTICS_UNIVERSAL: "xxx"
GOOGLE_SAFE_BROWSING_KEY: "xxx"
MAIL_PASSWORD: "xxx"
MAIL_USER: "xxx"
RECAPTCHA_SECRET_KEY: "xxx"
RECAPTCHA_SITE_KEY: "xxx"
JWT_SECRET: "xxx"
GOOGLE_ANALYTICS: ""
GOOGLE_ANALYTICS_UNIVERSAL: ""
GOOGLE_SAFE_BROWSING_KEY: ""
MAIL_PASSWORD: ""
MAIL_USER: ""
JWT_SECRET: ""
SENTRY_PRIVATE_DSN: ""
SENTRY_PUBLIC_DSN: ""
RECAPTCHA_SECRET_KEY: ""
RECAPTCHA_SITE_KEY: ""

env:
ADMIN_EMAILS: "admin@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.43
version: 0.1.44

# 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: 2 additions & 2 deletions charts/n8n/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# n8n

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

A Helm chart for Kubernetes

Expand Down Expand Up @@ -100,4 +100,4 @@ A Helm chart for Kubernetes
| worker.command[2] | string | `"n8n worker"` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.10.0](https://github.com/norwoodj/helm-docs/releases/v1.10.0)
Autogenerated from chart metadata using [helm-docs v1.8.1](https://github.com/norwoodj/helm-docs/releases/v1.8.1)
2 changes: 1 addition & 1 deletion charts/nocodb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.7
version: 0.2.8

# 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: 2 additions & 2 deletions charts/nocodb/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nocodb

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

A Helm chart for Kubernetes

Expand Down Expand Up @@ -68,4 +68,4 @@ A Helm chart for Kubernetes
| tolerations | list | `[]` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.10.0](https://github.com/norwoodj/helm-docs/releases/v1.10.0)
Autogenerated from chart metadata using [helm-docs v1.8.1](https://github.com/norwoodj/helm-docs/releases/v1.8.1)

0 comments on commit 81728b5

Please sign in to comment.