ConfigMap values are in seconds (e.g. connection_timeout=30 means 30s), but Duration::from_millis() interpreted them as ms (30ms), causing pool timeout on startup. Changed to from_secs(). Also removed Namespace from Helm chart to prevent cascade deletion of PVC/ConfigMap on uninstall.
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: gingress-controller
|
|
namespace: {{ .Values.gingress.namespace | default "gingress-system" }}
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: gingress-controller
|
|
rules:
|
|
- apiGroups: ["networking.k8s.io"]
|
|
resources: ["ingresses", "ingressclasses"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["networking.k8s.io"]
|
|
resources: ["ingresses/status"]
|
|
verbs: ["update", "patch"]
|
|
- apiGroups: [""]
|
|
resources: ["services", "endpoints", "endpointslices", "secrets", "nodes"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: ["discovery.k8s.io"]
|
|
resources: ["endpointslices"]
|
|
verbs: ["get", "list", "watch"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: gingress-controller
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: gingress-controller
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: gingress-controller
|
|
namespace: {{ .Values.gingress.namespace | default "gingress-system" }}
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: IngressClass
|
|
metadata:
|
|
name: gingress
|
|
spec:
|
|
controller: gingress.io/gingress-controller |