Skip to content

Commit f8a61b9

Browse files
committed
chore(deps): update quay.io/argoprojlabs/argocd-operator docker tag to v0.15.0
Signed-off-by: Renovate Bot <tech+renovate@vshn.ch>
1 parent fb8ce33 commit f8a61b9

File tree

49 files changed

+50467
-5395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+50467
-5395
lines changed

class/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ parameters:
5959
argocd_operator:
6060
registry: quay.io
6161
repository: argoprojlabs/argocd-operator
62-
tag: v0.12.2
62+
tag: v0.15.0
6363
kube_rbac_proxy:
6464
registry: quay.io
6565
repository: brancz/kube-rbac-proxy

tests/golden/defaults/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_applications.argoproj.io.yaml

Lines changed: 876 additions & 7 deletions
Large diffs are not rendered by default.

tests/golden/defaults/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_applicationsets.argoproj.io.yaml

Lines changed: 2301 additions & 22 deletions
Large diffs are not rendered by default.

tests/golden/defaults/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_appprojects.argoproj.io.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,32 @@ spec:
8585
description:
8686
description: Description contains optional project description
8787
type: string
88+
destinationServiceAccounts:
89+
description: DestinationServiceAccounts holds information about the
90+
service accounts to be impersonated for the application sync operation
91+
for each destination.
92+
items:
93+
description: ApplicationDestinationServiceAccount holds information
94+
about the service account to be impersonated for the application
95+
sync operation.
96+
properties:
97+
defaultServiceAccount:
98+
description: DefaultServiceAccount to be used for impersonation
99+
during the sync operation
100+
type: string
101+
namespace:
102+
description: Namespace specifies the target namespace for the
103+
application's resources.
104+
type: string
105+
server:
106+
description: Server specifies the URL of the target cluster's
107+
Kubernetes control plane API.
108+
type: string
109+
required:
110+
- defaultServiceAccount
111+
- server
112+
type: object
113+
type: array
88114
destinations:
89115
description: Destinations contains list of destinations available
90116
for deployment
@@ -252,6 +278,10 @@ spec:
252278
description: SyncWindow contains the kind, time, duration and attributes
253279
that are used to assign the syncWindows to apps
254280
properties:
281+
andOperator:
282+
description: UseAndOperator use AND operator for matching applications,
283+
namespaces and clusters instead of the default OR operator
284+
type: boolean
255285
applications:
256286
description: Applications contains a list of applications that
257287
the window will apply to

tests/golden/defaults/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_argocdexports.argoproj.io.yaml

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.14.0
5+
controller-gen.kubebuilder.io/version: v0.18.0
66
name: argocdexports.argoproj.io
77
spec:
88
group: argoproj.io
@@ -64,6 +64,7 @@ spec:
6464
items:
6565
type: string
6666
type: array
67+
x-kubernetes-list-type: atomic
6768
dataSource:
6869
description: |-
6970
dataSource field can be used to specify either:
@@ -148,33 +149,6 @@ spec:
148149
status field of the claim.
149150
More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
150151
properties:
151-
claims:
152-
description: |-
153-
Claims lists the names of resources, defined in spec.resourceClaims,
154-
that are used by this container.
155-
156-
157-
This is an alpha field and requires enabling the
158-
DynamicResourceAllocation feature gate.
159-
160-
161-
This field is immutable. It can only be set for containers.
162-
items:
163-
description: ResourceClaim references one entry in PodSpec.ResourceClaims.
164-
properties:
165-
name:
166-
description: |-
167-
Name must match the name of one entry in pod.spec.resourceClaims of
168-
the Pod where this field is used. It makes that resource available
169-
inside a container.
170-
type: string
171-
required:
172-
- name
173-
type: object
174-
type: array
175-
x-kubernetes-list-map-keys:
176-
- name
177-
x-kubernetes-list-type: map
178152
limits:
179153
additionalProperties:
180154
anyOf:
@@ -230,11 +204,13 @@ spec:
230204
items:
231205
type: string
232206
type: array
207+
x-kubernetes-list-type: atomic
233208
required:
234209
- key
235210
- operator
236211
type: object
237212
type: array
213+
x-kubernetes-list-type: atomic
238214
matchLabels:
239215
additionalProperties:
240216
type: string
@@ -250,6 +226,21 @@ spec:
250226
storageClassName is the name of the StorageClass required by the claim.
251227
More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
252228
type: string
229+
volumeAttributesClassName:
230+
description: |-
231+
volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
232+
If specified, the CSI driver will create or update the volume with the attributes defined
233+
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
234+
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
235+
will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
236+
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
237+
will be set by the persistentvolume controller if it exists.
238+
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
239+
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
240+
exists.
241+
More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/
242+
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).
243+
type: string
253244
volumeMode:
254245
description: |-
255246
volumeMode defines what type of volume is required by the claim.

0 commit comments

Comments
 (0)