Skip to content

Commit be2b72f

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

File tree

31 files changed

+20917
-967
lines changed

31 files changed

+20917
-967
lines changed

class/defaults.yml

+1-1
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.13.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

+347
Large diffs are not rendered by default.

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

+913-1
Large diffs are not rendered by default.

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

+26
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

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

+2,197-159
Large diffs are not rendered by default.

tests/golden/defaults/argocd/argocd/10_operator/apps_v1_deployment_syn-argocd-operator-controller-manager.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
fieldPath: metadata.annotations['olm.targetNamespaces']
5050
- name: ARGOCD_CLUSTER_CONFIG_NAMESPACES
5151
value: syn
52-
image: quay.io/argoprojlabs/argocd-operator:v0.12.2
52+
image: quay.io/argoprojlabs/argocd-operator:v0.13.0
5353
livenessProbe:
5454
httpGet:
5555
path: /healthz
@@ -74,6 +74,8 @@ spec:
7474
- ALL
7575
readOnlyRootFilesystem: true
7676
runAsNonRoot: true
77+
seccompProfile:
78+
type: RuntimeDefault
7779
volumeMounts:
7880
- mountPath: /tmp/k8s-webhook-server/serving-certs
7981
name: cert

tests/golden/https-catalog/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_applications.argoproj.io.yaml

+347
Large diffs are not rendered by default.

tests/golden/https-catalog/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_applicationsets.argoproj.io.yaml

+913-1
Large diffs are not rendered by default.

tests/golden/https-catalog/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_appprojects.argoproj.io.yaml

+26
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

tests/golden/https-catalog/argocd/argocd/10_operator/apiextensions.k8s.io_v1_customresourcedefinition_argocds.argoproj.io.yaml

+2,197-159
Large diffs are not rendered by default.

tests/golden/https-catalog/argocd/argocd/10_operator/apps_v1_deployment_syn-argocd-operator-controller-manager.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ spec:
4949
fieldPath: metadata.annotations['olm.targetNamespaces']
5050
- name: ARGOCD_CLUSTER_CONFIG_NAMESPACES
5151
value: syn
52-
image: quay.io/argoprojlabs/argocd-operator:v0.12.2
52+
image: quay.io/argoprojlabs/argocd-operator:v0.13.0
5353
livenessProbe:
5454
httpGet:
5555
path: /healthz
@@ -74,6 +74,8 @@ spec:
7474
- ALL
7575
readOnlyRootFilesystem: true
7676
runAsNonRoot: true
77+
seccompProfile:
78+
type: RuntimeDefault
7779
volumeMounts:
7880
- mountPath: /tmp/k8s-webhook-server/serving-certs
7981
name: cert

0 commit comments

Comments
 (0)