Skip to content

Commit

Permalink
Merge pull request #156 from projectsyn/commodore-renovate/quay.io-ar…
Browse files Browse the repository at this point in the history
…goprojlabs-argocd-operator-0.x

chore(deps): update quay.io/argoprojlabs/argocd-operator docker tag to v0.9.1
  • Loading branch information
bastjan authored Apr 19, 2024
2 parents f398c06 + ba8722f commit baffd8f
Show file tree
Hide file tree
Showing 16 changed files with 6,058 additions and 67 deletions.
2 changes: 1 addition & 1 deletion class/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ parameters:
argocd_operator:
registry: quay.io
repository: argoprojlabs/argocd-operator
tag: v0.8.0
tag: v0.9.1
kube_rbac_proxy:
registry: gcr.io
repository: kubebuilder/kube-rbac-proxy
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,18 @@ spec:
properties:
name:
description: Name is an alternate way of specifying the target
cluster by its symbolic name
cluster by its symbolic name. This must be set if Server is
not set.
type: string
namespace:
description: Namespace specifies the target namespace for the
application's resources. The namespace will only be set for
namespace-scoped resources that have not set a value for .metadata.namespace
type: string
server:
description: Server specifies the URL of the target cluster
and must be set to the Kubernetes control plane API
description: Server specifies the URL of the target cluster's
Kubernetes control plane API. This must be set if Name is
not set.
type: string
type: object
type: array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7135,6 +7135,11 @@ spec:
description: ArgoCDApplicationSet defines whether the Argo CD ApplicationSet
controller should be installed.
properties:
enabled:
description: Enabled is the flag to enable the Application Set
Controller during ArgoCD installation. (optional, default
`true`)
type: boolean
env:
description: Env lets you specify environment for applicationSet
controller pods
Expand Down Expand Up @@ -7496,6 +7501,10 @@ spec:
\ Set this to a duration, e.g. 10m or 600s to control the\
\ synchronisation frequency."
type: string
enabled:
description: Enabled is the flag to enable the Application Controller
during ArgoCD installation. (optional, default `true`)
type: boolean
env:
description: Env lets you specify environment for application
controller pods
Expand Down Expand Up @@ -8529,9 +8538,18 @@ spec:
description: DisableTLSVerification defines whether redis server
API should be accessed using strict TLS validation
type: boolean
enabled:
description: Enabled is the flag to enable Redis during ArgoCD
installation. (optional, default `true`)
type: boolean
image:
description: Image is the Redis container image.
type: string
remote:
description: Remote specifies the remote URL of the Redis container.
(optional, by default, a local instance managed by the operator
is used.)
type: string
resources:
description: Resources defines the Compute Resources required
by the container for Redis.
Expand Down Expand Up @@ -8595,6 +8613,10 @@ spec:
here can currently be: - openshift - Use the OpenShift service
CA to request TLS config'
type: string
enabled:
description: Enabled is the flag to enable Repo Server during
ArgoCD installation. (optional, default `true`)
type: boolean
env:
description: Env lets you specify environment for repo server
pods
Expand Down Expand Up @@ -10088,6 +10110,11 @@ spec:
description: MountSAToken describes whether you would like to
have the Repo server mount the service account token
type: boolean
remote:
description: Remote specifies the remote URL of the Repo Server
container. (optional, by default, a local instance managed
by the operator is used.)
type: string
replicas:
description: Replicas defines the number of replicas for argocd-repo-server.
Value should be greater than or equal to 0. Default is nil.
Expand Down Expand Up @@ -13348,6 +13375,10 @@ spec:
required:
- enabled
type: object
enabled:
description: Enabled is the flag to enable ArgoCD Server during
ArgoCD installation. (optional, default `true`)
type: boolean
env:
description: Env lets you specify environment for API server
pods
Expand Down Expand Up @@ -13765,6 +13796,122 @@ spec:
config:
description: Config is the dex connector configuration.
type: string
env:
description: Env lets you specify environment variables
for Dex.
items:
description: EnvVar represents an environment variable
present in a Container.
properties:
name:
description: Name of the environment variable. Must
be a C_IDENTIFIER.
type: string
value:
description: 'Variable references $(VAR_NAME) are
expanded using the previously defined environment
variables in the container and any service environment
variables. If a variable cannot be resolved, the
reference in the input string will be unchanged.
Double $$ are reduced to a single $, which allows
for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)"
will produce the string literal "$(VAR_NAME)". Escaped
references will never be expanded, regardless of
whether the variable exists or not. Defaults to
"".'
type: string
valueFrom:
description: Source for the environment variable's
value. Cannot be used if value is not empty.
properties:
configMapKeyRef:
description: Selects a key of a ConfigMap.
properties:
key:
description: The key to select.
type: string
name:
description: 'Name of the referent. More info:
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion,
kind, uid?'
type: string
optional:
description: Specify whether the ConfigMap
or its key must be defined
type: boolean
required:
- key
type: object
fieldRef:
description: 'Selects a field of the pod: supports
metadata.name, metadata.namespace, `metadata.labels[''<KEY>'']`,
`metadata.annotations[''<KEY>'']`, spec.nodeName,
spec.serviceAccountName, status.hostIP, status.podIP,
status.podIPs.'
properties:
apiVersion:
description: Version of the schema the FieldPath
is written in terms of, defaults to "v1".
type: string
fieldPath:
description: Path of the field to select in
the specified API version.
type: string
required:
- fieldPath
type: object
resourceFieldRef:
description: 'Selects a resource of the container:
only resources limits and requests (limits.cpu,
limits.memory, limits.ephemeral-storage, requests.cpu,
requests.memory and requests.ephemeral-storage)
are currently supported.'
properties:
containerName:
description: 'Container name: required for
volumes, optional for env vars'
type: string
divisor:
anyOf:
- type: integer
- type: string
description: Specifies the output format of
the exposed resources, defaults to "1"
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
resource:
description: 'Required: resource to select'
type: string
required:
- resource
type: object
secretKeyRef:
description: Selects a key of a secret in the
pod's namespace
properties:
key:
description: The key of the secret to select
from. Must be a valid secret key.
type: string
name:
description: 'Name of the referent. More info:
https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion,
kind, uid?'
type: string
optional:
description: Specify whether the Secret or
its key must be defined
type: boolean
required:
- key
type: object
type: object
required:
- name
type: object
type: array
groups:
description: Optional list of required groups a user must
be a member of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
fieldPath: metadata.annotations['olm.targetNamespaces']
- name: ARGOCD_CLUSTER_CONFIG_NAMESPACES
value: syn
image: quay.io/argoprojlabs/argocd-operator:v0.8.0
image: quay.io/argoprojlabs/argocd-operator:v0.9.1
livenessProbe:
httpGet:
path: /healthz
Expand Down
Loading

0 comments on commit baffd8f

Please sign in to comment.