-
Notifications
You must be signed in to change notification settings - Fork 8
/
reloader.tf
26 lines (26 loc) · 1.18 KB
/
reloader.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# install reloader.
# NB tls libraries typically load the certificates from ca-certificates.crt
# file once, when they are started, and they never reload the file again.
# reloader will automatically restart them when their configmap/secret
# changes.
# NB the default values are described at:
# https://github.com/stakater/reloader/blob/v1.1.0/deployments/kubernetes/chart/reloader/values.yaml
# NB make sure you are seeing the same version of the chart that you are installing.
# see https://github.com/stakater/reloader
# see https://artifacthub.io/packages/helm/stakater/reloader
# see https://cert-manager.io/docs/tutorials/getting-started-with-trust-manager/
# see https://registry.terraform.io/providers/hashicorp/helm/latest/docs/data-sources/template
data "helm_template" "reloader" {
namespace = "kube-system"
name = "reloader"
repository = "https://stakater.github.io/stakater-charts"
chart = "reloader"
# renovate: datasource=helm depName=reloader registryUrl=https://stakater.github.io/stakater-charts
version = "1.1.0"
kube_version = var.kubernetes_version
api_versions = []
set {
name = "reloader.autoReloadAll"
value = "false"
}
}