Compare commits

...

4 Commits

Author SHA1 Message Date
Muhammad Safwan Karim
5907d61031 Merge pull request #1062 from stakater/update-version-ekaxhap
Bump version to 1.4.11 on release-v1.4.11 branch
2025-12-10 16:59:21 +05:00
msafwankarim
85dce31b40 Bump version to 1.4.11
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-10 11:58:05 +00:00
Muhammad Safwan Karim
b71fb19882 Merge pull request #1061 from MatthiasWerning/bugfix/controller-init
Fix configmaps key in ResourceMap leading to controllers not being able to mark themselves as initialized
2025-12-10 15:35:31 +05:00
Matthias Werning
27fb47ff52 Fix configmaps key in ResourceMap leading to controllers not being able to mark themselves as initialized 2025-12-10 09:10:52 +01:00
4 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
1.4.10
1.4.11

View File

@@ -17,7 +17,7 @@ spec:
app: reloader-reloader
spec:
containers:
- image: "ghcr.io/stakater/reloader:v1.4.10"
- image: "ghcr.io/stakater/reloader:v1.4.11"
imagePullPolicy: IfNotPresent
name: reloader-reloader
env:

View File

@@ -141,7 +141,7 @@ spec:
fieldPath: metadata.namespace
- name: RELOADER_DEPLOYMENT_NAME
value: reloader-reloader
image: ghcr.io/stakater/reloader:v1.4.10
image: ghcr.io/stakater/reloader:v1.4.11
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 5

View File

@@ -7,7 +7,7 @@ import (
// ResourceMap are resources from where changes are going to be detected
var ResourceMap = map[string]runtime.Object{
"configMaps": &v1.ConfigMap{},
"configmaps": &v1.ConfigMap{},
"secrets": &v1.Secret{},
"namespaces": &v1.Namespace{},
"namespaces": &v1.Namespace{},
}