chore(deps): update dependency argoproj-labs/argocd-image-updater to v1.2.0#563
Merged
renovate[bot] merged 1 commit intoMay 4, 2026
Merged
Conversation
Contributor
ArgoCD Diff ResultAuth path: tailscale アプリケーション: argocd-image-updater の差分パス: argoproj/argocd-image-updater ===== apiextensions.k8s.io/CustomResourceDefinition /imageupdaters.argocd-image-updater.argoproj.io ======
83c83,96
< - name: v1alpha1
---
> - additionalPrinterColumns:
> - jsonPath: .status.applicationsMatched
> name: Apps
> type: integer
> - jsonPath: .status.imagesManaged
> name: Images
> type: integer
> - jsonPath: .status.lastCheckedAt
> name: Last Checked
> type: date
> - jsonPath: .status.conditions[?(@.type=="Ready")].status
> name: Ready
> type: string
> name: v1alpha1
374a388,406
> pullRequest:
> description: |-
> PullRequest configures creation of pull requests when writing back image updates to Git.
> When set, the controller opens a PR instead of pushing to the branch.
> If not specified write back config method is `git`.
> properties:
> github:
> description: GitHub configures PR creation via the
> GitHub API.
> type: object
> gitlab:
> description: GitLab configures MR creation via the
> GitLab API.
> type: object
> type: object
> x-kubernetes-validations:
> - message: Exactly one of github or gitlab must be set
> rule: '(has(self.github) ? 1 : 0) + (has(self.gitlab)
> ? 1 : 0) == 1'
459,466d490
< namespace:
< description: |-
< Namespace indicates the target namespace of the applications.
<
< Deprecated: This field is deprecated and will be removed in a future release.
< The controller now uses the ImageUpdater CR's namespace (metadata.namespace)
< to determine which namespace to search for applications. This field is ignored.
< type: string
481a506,524
> pullRequest:
> description: |-
> PullRequest configures creation of pull requests when writing back image updates to Git.
> When set, the controller opens a PR instead of pushing to the branch.
> If not specified write back config method is `git`.
> properties:
> github:
> description: GitHub configures PR creation via the GitHub
> API.
> type: object
> gitlab:
> description: GitLab configures MR creation via the GitLab
> API.
> type: object
> type: object
> x-kubernetes-validations:
> - message: Exactly one of github or gitlab must be set
> rule: '(has(self.github) ? 1 : 0) + (has(self.gitlab) ?
> 1 : 0) == 1'
512a556,561
> applicationsMatched:
> description: ApplicationsMatched is the number of Argo CD applications
> matched by this CR's selectors.
> format: int32
> minimum: 0
> type: integer
513a563,564
> description: Conditions represent the latest available observations
> of the resource's state.
569,571c620,647
< imageStatus:
< description: ImageStatus indicates the detailed status for the list
< of managed images
---
> x-kubernetes-list-map-keys:
> - type
> x-kubernetes-list-type: map
> imagesManaged:
> description: ImagesManaged is the number of images that were eligible
> for update checking.
> format: int32
> minimum: 0
> type: integer
> lastCheckedAt:
> description: LastCheckedAt indicates when the controller last checked
> for image updates.
> format: date-time
> type: string
> lastUpdatedAt:
> description: LastUpdatedAt indicates when the controller last performed
> an image update.
> format: date-time
> type: string
> observedGeneration:
> description: ObservedGeneration is the most recent generation observed
> by the controller.
> format: int64
> minimum: 0
> type: integer
> recentUpdates:
> description: RecentUpdates contains the list of image updates performed
> during the last update cycle.
573,574c649,650
< description: ImageStatus contains information for an image:version
< and its update status in hosting applications
---
> description: RecentUpdate records a single image update performed
> during the last update.
576,597c652,654
< applications:
< description: Applications contains a list of applications and
< when the image was last updated therein
< items:
< description: ImageApplicationLastUpdated contains information
< for an application and when the image was last updated therein
< properties:
< appName:
< description: AppName indicates and namespace and the application
< name
< type: string
< lastUpdatedAt:
< description: LastUpdatedAt indicates when the image in
< this application was last updated
< format: date-time
< type: string
< required:
< - appName
< type: object
< type: array
< name:
< description: Name indicates the image name
---
> alias:
> description: Alias is the alias of the image configuration that
> was updated.
599,600c656,676
< version:
< description: Version indicates the image version
---
> applicationsUpdated:
> description: ApplicationsUpdated is the number of applications
> in which this image was updated.
> format: int32
> minimum: 0
> type: integer
> image:
> description: Image is the full image reference.
> type: string
> message:
> description: Message provides a human-readable description of
> the update action.
> type: string
> newVersion:
> description: NewVersion is the new tag or digest the image was
> updated to.
> type: string
> updatedAt:
> description: UpdatedAt is the timestamp when the update was
> applied.
> format: date-time
603,604c679,683
< - name
< - version
---
> - alias
> - applicationsUpdated
> - image
> - newVersion
> - updatedAt
607,610c686
< reconciledAt:
< description: LastUpdatedAt indicates when the image updater last ran
< format: date-time
< type: string
---
> x-kubernetes-list-type: atomic
===== apps/Deployment argocd/argocd-image-updater-controller ======
393,394d392
< command:
< - /manager
401a400,405
> - name: IMAGE_UPDATER_WATCH_NAMESPACES
> valueFrom:
> configMapKeyRef:
> key: watch.namespaces
> name: argocd-image-updater-config
> optional: true
503a508,513
> - name: ALIYUN_ACR_WEBHOOK_SECRET
> valueFrom:
> secretKeyRef:
> key: webhook.aliyun-acr-secret
> name: argocd-image-updater-secret
> optional: true
515a526,549
> - name: DISABLE_TLS
> valueFrom:
> configMapKeyRef:
> key: disable-tls
> name: argocd-image-updater-config
> optional: true
> - name: TLS_MIN_VERSION
> valueFrom:
> configMapKeyRef:
> key: tls.min-version
> name: argocd-image-updater-config
> optional: true
> - name: TLS_MAX_VERSION
> valueFrom:
> configMapKeyRef:
> key: tls.max-version
> name: argocd-image-updater-config
> optional: true
> - name: TLS_CIPHERS
> valueFrom:
> configMapKeyRef:
> key: tls.ciphers
> name: argocd-image-updater-config
> optional: true
518c552
< image: quay.io/argoprojlabs/argocd-image-updater:v1.1.1
---
> image: quay.io/argoprojlabs/argocd-image-updater:v1.2.0
571a606,608
> - mountPath: /app/config/tls
> name: argocd-image-updater-tls
> readOnly: true
605a643,652
> - name: argocd-image-updater-tls
> secret:
> defaultMode: 420
> items:
> - key: tls.crt
> path: tls.crt
> - key: tls.key
> path: tls.key
> optional: true
> secretName: argocd-image-updater-tls
===== rbac.authorization.k8s.io/ClusterRole /argocd-image-updater-manager-role ======
1,81d0
< apiVersion: rbac.authorization.k8s.io/v1
< kind: ClusterRole
< metadata:
< annotations:
< argocd.argoproj.io/tracking-id: argocd-image-updater:rbac.authorization.k8s.io/ClusterRole:argocd/argocd-image-updater-manager-role
< kubectl.kubernetes.io/last-applied-configuration: |
< {"apiVersion":"rbac.authorization.k8s.io/v1","kind":"ClusterRole","metadata":{"annotations":{"argocd.argoproj.io/tracking-id":"argocd-image-updater:rbac.authorization.k8s.io/ClusterRole:argocd/argocd-image-updater-manager-role"},"name":"argocd-image-updater-manager-role"},"rules":[{"apiGroups":[""],"resources":["events"],"verbs":["create"]},{"apiGroups":["argocd-image-updater.argoproj.io"],"resources":["imageupdaters"],"verbs":["create","delete","get","list","patch","update","watch"]},{"apiGroups":["argocd-image-updater.argoproj.io"],"resources":["imageupdaters/finalizers"],"verbs":["update"]},{"apiGroups":["argocd-image-updater.argoproj.io"],"resources":["imageupdaters/status"],"verbs":["get","patch","update"]},{"apiGroups":["argoproj.io"],"resources":["applications"],"verbs":["get","list","patch","update","watch"]}]}
< managedFields:
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations: {}
< f:rules: {}
< manager: kubectl-client-side-apply
< operation: Update
< time: "2025-12-16T16:38:15Z"
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations:
< f:argocd.argoproj.io/tracking-id: {}
< manager: argocd-application-controller
< operation: Update
< time: "2026-01-26T17:21:24Z"
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations:
< f:kubectl.kubernetes.io/last-applied-configuration: {}
< manager: argocd-controller
< operation: Update
< time: "2026-01-26T17:21:25Z"
< name: argocd-image-updater-manager-role
< resourceVersion: "511888228"
< uid: 518ea3df-b89f-4076-8c44-0854c02e9d3c
< rules:
< - apiGroups:
< - ""
< resources:
< - events
< verbs:
< - create
< - apiGroups:
< - argocd-image-updater.argoproj.io
< resources:
< - imageupdaters
< verbs:
< - create
< - delete
< - get
< - list
< - patch
< - update
< - watch
< - apiGroups:
< - argocd-image-updater.argoproj.io
< resources:
< - imageupdaters/finalizers
< verbs:
< - update
< - apiGroups:
< - argocd-image-updater.argoproj.io
< resources:
< - imageupdaters/status
< verbs:
< - get
< - patch
< - update
< - apiGroups:
< - argoproj.io
< resources:
< - applications
< verbs:
< - get
< - list
< - patch
< - update
< - watch
===== rbac.authorization.k8s.io/ClusterRoleBinding /argocd-image-updater-manager-rolebinding ======
1,54d0
< apiVersion: rbac.authorization.k8s.io/v1
< kind: ClusterRoleBinding
< metadata:
< annotations:
< argocd.argoproj.io/tracking-id: argocd-image-updater:rbac.authorization.k8s.io/ClusterRoleBinding:argocd/argocd-image-updater-manager-rolebinding
< kubectl.kubernetes.io/last-applied-configuration: |
< {"apiVersion":"rbac.authorization.k8s.io/v1","kind":"ClusterRoleBinding","metadata":{"annotations":{"argocd.argoproj.io/tracking-id":"argocd-image-updater:rbac.authorization.k8s.io/ClusterRoleBinding:argocd/argocd-image-updater-manager-rolebinding"},"labels":{"app.kubernetes.io/managed-by":"kustomize","app.kubernetes.io/name":"argocd-image-updater"},"name":"argocd-image-updater-manager-rolebinding"},"roleRef":{"apiGroup":"rbac.authorization.k8s.io","kind":"ClusterRole","name":"argocd-image-updater-manager-role"},"subjects":[{"kind":"ServiceAccount","name":"argocd-image-updater-controller","namespace":"argocd"}]}
< labels:
< app.kubernetes.io/managed-by: kustomize
< app.kubernetes.io/name: argocd-image-updater
< managedFields:
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations: {}
< f:labels:
< .: {}
< f:app.kubernetes.io/managed-by: {}
< f:app.kubernetes.io/name: {}
< f:roleRef: {}
< manager: kubectl-client-side-apply
< operation: Update
< time: "2025-12-16T16:38:16Z"
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations:
< f:argocd.argoproj.io/tracking-id: {}
< manager: argocd-application-controller
< operation: Update
< time: "2026-01-26T17:21:25Z"
< - apiVersion: rbac.authorization.k8s.io/v1
< fieldsType: FieldsV1
< fieldsV1:
< f:metadata:
< f:annotations:
< f:kubectl.kubernetes.io/last-applied-configuration: {}
< f:subjects: {}
< manager: argocd-controller
< operation: Update
< time: "2026-01-26T17:21:25Z"
< name: argocd-image-updater-manager-rolebinding
< resourceVersion: "511888243"
< uid: 1dd55e5e-05e9-4be2-94b0-fb99fd6a9265
< roleRef:
< apiGroup: rbac.authorization.k8s.io
< kind: ClusterRole
< name: argocd-image-updater-manager-role
< subjects:
< - kind: ServiceAccount
< name: argocd-image-updater-controller
< namespace: argocd
===== rbac.authorization.k8s.io/RoleBinding argocd/argocd-image-updater-manager-rolebinding ======
0a1,17
> apiVersion: rbac.authorization.k8s.io/v1
> kind: RoleBinding
> metadata:
> annotations:
> argocd.argoproj.io/tracking-id: argocd-image-updater:rbac.authorization.k8s.io/RoleBinding:argocd/argocd-image-updater-manager-rolebinding
> labels:
> app.kubernetes.io/managed-by: kustomize
> app.kubernetes.io/name: argocd-image-updater
> name: argocd-image-updater-manager-rolebinding
> namespace: argocd
> roleRef:
> apiGroup: rbac.authorization.k8s.io
> kind: Role
> name: argocd-image-updater-manager-role
> subjects:
> - kind: ServiceAccount
> name: argocd-image-updater-controller
===== rbac.authorization.k8s.io/Role argocd/argocd-image-updater-manager-role ======
0a1,50
> apiVersion: rbac.authorization.k8s.io/v1
> kind: Role
> metadata:
> annotations:
> argocd.argoproj.io/tracking-id: argocd-image-updater:rbac.authorization.k8s.io/Role:argocd/argocd-image-updater-manager-role
> name: argocd-image-updater-manager-role
> namespace: argocd
> rules:
> - apiGroups:
> - ""
> resources:
> - events
> verbs:
> - create
> - apiGroups:
> - argocd-image-updater.argoproj.io
> resources:
> - imageupdaters
> verbs:
> - create
> - delete
> - get
> - list
> - patch
> - update
> - watch
> - apiGroups:
> - argocd-image-updater.argoproj.io
> resources:
> - imageupdaters/finalizers
> verbs:
> - update
> - apiGroups:
> - argocd-image-updater.argoproj.io
> resources:
> - imageupdaters/status
> verbs:
> - get
> - patch
> - update
> - apiGroups:
> - argoproj.io
> resources:
> - applications
> verbs:
> - get
> - list
> - patch
> - update
> - watch
ℹ️ 上記の差分が見つかりました |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.1.1→v1.2.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
argoproj-labs/argocd-image-updater (argoproj-labs/argocd-image-updater)
v1.2.0Compare Source
What's Changed
New Contributors
Full Changelog: argoproj-labs/argocd-image-updater@v1.1.1...v1.2.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.