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

feat(helm): update chart reloader to 1.2.0 #227

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 8, 2024

This PR contains the following updates:

Package Update Change
reloader minor 1.0.115 -> 1.2.0

Release Notes

stakater/Reloader (reloader)

v1.2.0

Compare Source

Announcement 📢 📢 📢

From this release onwards, helm charts and images/git releases will have different semver versioning. If you are using git releases as a reference for helm charts, it will break in the future.
It is recommended to make changes to your workflows to accommodate these changes for smooth upgrades in the future.

Changes were made to the understanding of our mistakes in treating both helm chart and git releases as related artifacts so they had the same versioning on releases, which we consider is wrong and we are attempting to fix it.

Apologies in advance for trouble, if any.

** (Different versioning for both artifacts; for example, git release of v1.2.0 might not have a chart released with the same version) **

What's Changed

New Contributors

Full Changelog: stakater/Reloader@v1.1.0...v1.2.0

v1.1.0

Compare Source

Announcement 📢 📢 📢

Discussions are being done internally on how to release helm charts, it is highly likely that the release versioning of helm chart and images will become divergent from next release onwards.
(Different versioning for both artifacts, for example git release of v1.1.1 might not have a chart released with the same version)
Pls edit your automated workflows to accommodate for this change before the new release to have seamless updates in your clusters.

What's Changed

New Contributors

Full Changelog: stakater/Reloader@v1.0.121...v1.1.0

v1.0.121

Compare Source

Changelog

  • 04a9874 Merge pull request #​723 from robgordon89/fix/pod-name-env-ha-fix
  • 70ab566 [skip-ci] Update artifacts
  • 32d5ce8 chore: fix for POD_NAME and POD_NAMESPACE envs when enableHA is true
  • ef0ea91 fix default values for memory and cpu

v1.0.120

Compare Source

Changelog

  • 4dceccc Merge pull request #​719 from stakater/disable-pr-target
  • 80c54f8 Switch PR workflow to pull_request
  • 12b9a19 Tell Go runtime about the CPU & memory limits. (#​699)
  • e6d833b [skip-ci] Update artifacts

v1.0.119

Compare Source

Changelog

v1.0.116

Compare Source

Changelog

  • cbf501f Merge branch 'master' into master
  • b6894f6 Merge pull request #​695 from deschmih/master
  • 49997ac [skip-ci] Update artifacts
  • 2260d72 feature reload-on-delete implemented, test cases enhanced
  • cda9fa9 feature reload-on-delete removed from doc
  • 074a42d feature reload-on-delete removed from doc

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Jul 8, 2024

--- kubernetes/apps/kube-system/reloader/app Kustomization: flux-system/reloader HelmRelease: kube-system/reloader

+++ kubernetes/apps/kube-system/reloader/app Kustomization: flux-system/reloader HelmRelease: kube-system/reloader

@@ -13,13 +13,13 @@

     spec:
       chart: reloader
       sourceRef:
         kind: HelmRepository
         name: stakater
         namespace: flux-system
-      version: 1.0.115
+      version: 1.2.0
   install:
     remediation:
       retries: 3
   interval: 30m
   maxHistory: 2
   uninstall:

Copy link

github-actions bot commented Jul 8, 2024

--- HelmRelease: kube-system/reloader ClusterRole: kube-system/reloader-role

+++ HelmRelease: kube-system/reloader ClusterRole: kube-system/reloader-role

@@ -30,22 +30,12 @@

   verbs:
   - list
   - get
   - update
   - patch
 - apiGroups:
-  - extensions
-  resources:
-  - deployments
-  - daemonsets
-  verbs:
-  - list
-  - get
-  - update
-  - patch
-- apiGroups:
   - batch
   resources:
   - cronjobs
   verbs:
   - list
   - get
--- HelmRelease: kube-system/reloader Deployment: kube-system/reloader

+++ HelmRelease: kube-system/reloader Deployment: kube-system/reloader

@@ -9,13 +9,13 @@

     app: reloader
     release: reloader
     heritage: Helm
     app.kubernetes.io/managed-by: Helm
     group: com.stakater.platform
     provider: stakater
-    version: v1.0.115
+    version: v1.2.0
   name: reloader
   namespace: kube-system
 spec:
   replicas: 1
   revisionHistoryLimit: 2
   selector:
@@ -28,18 +28,29 @@

         app: reloader
         release: reloader
         heritage: Helm
         app.kubernetes.io/managed-by: Helm
         group: com.stakater.platform
         provider: stakater
-        version: v1.0.115
+        version: v1.2.0
     spec:
       containers:
-      - image: ghcr.io/stakater/reloader:v1.0.115
+      - image: ghcr.io/stakater/reloader:v1.2.0
         imagePullPolicy: IfNotPresent
         name: reloader
+        env:
+        - name: GOMAXPROCS
+          valueFrom:
+            resourceFieldRef:
+              resource: limits.cpu
+              divisor: '1'
+        - name: GOMEMLIMIT
+          valueFrom:
+            resourceFieldRef:
+              resource: limits.memory
+              divisor: '1'
         ports:
         - name: http
           containerPort: 9090
         livenessProbe:
           httpGet:
             path: /live
@@ -57,12 +68,13 @@

           failureThreshold: 5
           periodSeconds: 10
           successThreshold: 1
           initialDelaySeconds: 10
         securityContext: {}
         args:
+        - --log-level=info
         - --reload-strategy=annotations
       securityContext:
         runAsNonRoot: true
         runAsUser: 65534
         seccompProfile:
           type: RuntimeDefault
--- HelmRelease: kube-system/reloader PodMonitor: kube-system/reloader

+++ HelmRelease: kube-system/reloader PodMonitor: kube-system/reloader

@@ -18,11 +18,11 @@

   namespaceSelector:
     matchNames:
     - kube-system
   selector:
     matchLabels:
       app: reloader
-      chart: reloader-1.0.115
+      chart: reloader-1.2.0
       release: reloader
       heritage: Helm
       app.kubernetes.io/managed-by: Helm
 

@renovate renovate bot force-pushed the renovate/reloader-1.x branch from 4351b1c to d204c26 Compare July 17, 2024 12:08
@renovate renovate bot changed the title fix(helm): update chart reloader to 1.0.116 fix(helm): update chart reloader to 1.0.119 Jul 17, 2024
@renovate renovate bot force-pushed the renovate/reloader-1.x branch from d204c26 to 3053730 Compare August 7, 2024 09:01
@renovate renovate bot changed the title fix(helm): update chart reloader to 1.0.119 fix(helm): update chart reloader to 1.0.120 Aug 7, 2024
@renovate renovate bot force-pushed the renovate/reloader-1.x branch from 3053730 to 213c8f3 Compare August 7, 2024 15:43
@renovate renovate bot changed the title fix(helm): update chart reloader to 1.0.120 fix(helm): update chart reloader to 1.0.121 Aug 7, 2024
@renovate renovate bot force-pushed the renovate/reloader-1.x branch from 213c8f3 to 37086c2 Compare August 28, 2024 17:53
@renovate renovate bot changed the title fix(helm): update chart reloader to 1.0.121 feat(helm): update chart reloader to 1.1.0 Aug 28, 2024
@renovate renovate bot changed the title feat(helm): update chart reloader to 1.1.0 feat(helm): update chart reloader to 1.2.0 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/reloader-1.x branch from 37086c2 to e392648 Compare November 20, 2024 10:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant