Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add environment variable for using a custom CA (for the additional-certificates configMap to work) #174

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/uptime-kuma/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "1.23.13"
appVersion: "1.23.14"
deprecated: false
description: A self-hosted Monitoring tool like "Uptime-Robot".
home: https://github.com/dirsigler/uptime-kuma-helm
2 changes: 2 additions & 0 deletions charts/uptime-kuma/README.md
Original file line number Diff line number Diff line change
@@ -51,6 +51,8 @@ A self-hosted Monitoring tool like "Uptime-Robot".
| podAnnotations | object | `{}` | |
| podEnv[0].name | string | `"UPTIME_KUMA_PORT"` | |
| podEnv[0].value | string | `"3001"` | |
| podEnv[0].name | string | `"NODE_EXTRA_CA_CERTS"` | |
| podEnv[0].value | string | `"/etc/ssl/certs/additional/additional-ca.pem"` | |
| podLabels | object | `{}` | |
| podSecurityContext | object | `{}` | |
| readinessProbe.enabled | bool | `true` | |
3 changes: 3 additions & 0 deletions charts/uptime-kuma/values.yaml
Original file line number Diff line number Diff line change
@@ -32,6 +32,9 @@ podEnv:
# a default port must be set. required by container
- name: "UPTIME_KUMA_PORT"
value: "3001"
# For using a custom CA with additionalVolumes, the CA must be passed as an env variable to node
# - name: "NODE_EXTRA_CA_CERTS"
# value: "/etc/ssl/certs/additional/additional-ca.pem"

podSecurityContext:
{}