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

add storageos/operator #248

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -1131,6 +1131,10 @@ Files: crd-catalog/spotahome/redis-operator/*
Copyright: The spotahome/redis-operator Authors
License: Apache-2.0

Files: crd-catalog/storageos/operator/*
Copyright: The storageos/operator Authors
License: Apache-2.0

Files: crd-catalog/tektoncd/operator/*
Copyright: The tektoncd/operator Authors
License: Apache-2.0
Expand Down
8 changes: 8 additions & 0 deletions code-generator/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2814,6 +2814,14 @@ pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
"https://github.com/spotahome/redis-operator/blob/master/manifests/databases.spotahome.com_redisfailovers.yaml",
],
},
UpstreamSource {
project_name: "storageos/operator",
license: APACHE_V2,
urls: &[
"https://github.com/storageos/operator/blob/main/config/crd/bases/config.storageos.com_operatorconfigs.yaml",
"https://github.com/storageos/operator/blob/main/config/crd/bases/storageos.com_storageosclusters.yaml",
],
},
UpstreamSource {
project_name: "tektoncd/operator",
license: APACHE_V2,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
apiVersion: "apiextensions.k8s.io/v1"
kind: "CustomResourceDefinition"
metadata:
annotations:
controller-gen.kubebuilder.io/version: "v0.9.0"
name: "operatorconfigs.config.storageos.com"
spec:
group: "config.storageos.com"
names:
kind: "OperatorConfig"
listKind: "OperatorConfigList"
plural: "operatorconfigs"
singular: "operatorconfig"
scope: "Namespaced"
versions:
- name: "v1"
schema:
openAPIV3Schema:
description: "OperatorConfig is the Schema for the operatorconfigs API"
properties:
apiVersion:
description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
type: "string"
cacheNamespace:
description: "CacheNamespace if specified restricts the manager's cache to watch objects in the desired namespace Defaults to all namespaces \n Note: If a namespace is specified, controllers can still Watch for a cluster-scoped resource (e.g Node). For namespaced resources the cache will only hold objects from the desired namespace."
type: "string"
controller:
description: "Controller contains global configuration options for controllers registered within this manager."
properties:
cacheSyncTimeout:
description: "CacheSyncTimeout refers to the time limit set to wait for syncing caches. Defaults to 2 minutes if not set."
format: "int64"
type: "integer"
groupKindConcurrency:
additionalProperties:
type: "integer"
description: "GroupKindConcurrency is a map from a Kind to the number of concurrent reconciliation allowed for that controller. \n When a controller is registered within this manager using the builder utilities, users have to specify the type the controller reconciles in the For(...) call. If the object's kind passed matches one of the keys in this map, the concurrency for that controller is set to the number specified. \n The key is expected to be consistent in form with GroupKind.String(), e.g. ReplicaSet in apps group (regardless of version) would be `ReplicaSet.apps`."
type: "object"
type: "object"
gracefulShutDown:
description: "GracefulShutdownTimeout is the duration given to runnable to stop before the manager actually returns on stop. To disable graceful shutdown, set to time.Duration(0) To use graceful shutdown without timeout, set to a negative duration, e.G. time.Duration(-1) The graceful shutdown is skipped for safety reasons in case the leader election lease is lost."
type: "string"
health:
description: "Health contains the controller health configuration"
properties:
healthProbeBindAddress:
description: "HealthProbeBindAddress is the TCP address that the controller should bind to for serving health probes"
type: "string"
livenessEndpointName:
description: "LivenessEndpointName, defaults to \"healthz\""
type: "string"
readinessEndpointName:
description: "ReadinessEndpointName, defaults to \"readyz\""
type: "string"
type: "object"
kind:
description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
type: "string"
leaderElection:
description: "LeaderElection is the LeaderElection config to be used when configuring the manager.Manager leader election"
properties:
leaderElect:
description: "leaderElect enables a leader election client to gain leadership before executing the main loop. Enable this when running replicated components for high availability."
type: "boolean"
leaseDuration:
description: "leaseDuration is the duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled."
type: "string"
renewDeadline:
description: "renewDeadline is the interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled."
type: "string"
resourceLock:
description: "resourceLock indicates the resource object type that will be used to lock during leader election cycles."
type: "string"
resourceName:
description: "resourceName indicates the name of resource object that will be used to lock during leader election cycles."
type: "string"
resourceNamespace:
description: "resourceName indicates the namespace of resource object that will be used to lock during leader election cycles."
type: "string"
retryPeriod:
description: "retryPeriod is the duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled."
type: "string"
required:
- "leaderElect"
- "leaseDuration"
- "renewDeadline"
- "resourceLock"
- "resourceName"
- "resourceNamespace"
- "retryPeriod"
type: "object"
metadata:
type: "object"
metrics:
description: "Metrics contains thw controller metrics configuration"
properties:
bindAddress:
description: "BindAddress is the TCP address that the controller should bind to for serving prometheus metrics. It can be set to \"0\" to disable the metrics serving."
type: "string"
type: "object"
serialExecutionStrategy:
description: "SerialExecutionStrategy forces the operator to install components serially. Default behaviour is to install components in parallel."
type: "boolean"
syncPeriod:
description: "SyncPeriod determines the minimum frequency at which watched resources are reconciled. A lower period will correct entropy more quickly, but reduce responsiveness to change if there are many watched resources. Change this value only if you know what you are doing. Defaults to 10 hours if unset. there will a 10 percent jitter between the SyncPeriod of all controllers so that all controllers will not send list requests simultaneously."
type: "string"
validatingWebhookConfigRef:
description: "ValidatingWebhookConfigRef is the reference of the validating webhook configuration."
type: "string"
webhook:
description: "Webhook contains the controllers webhook configuration"
properties:
certDir:
description: "CertDir is the directory that contains the server key and certificate. if not set, webhook server would look up the server key and certificate in {TempDir}/k8s-webhook-server/serving-certs. The server key and certificate must be named tls.key and tls.crt, respectively."
type: "string"
host:
description: "Host is the hostname that the webhook server binds to. It is used to set webhook.Server.Host."
type: "string"
port:
description: "Port is the port that the webhook server serves at. It is used to set webhook.Server.Port."
type: "integer"
type: "object"
webhookCertRefreshInterval:
description: "WebhookCertRefreshInterval is the interval at which the webhook cert is refreshed."
type: "string"
webhookSecretRef:
description: "WebhookSecretRef is the secret reference that stores webhook secrets."
type: "string"
webhookServiceName:
description: "WebhookServiceName is the service name of the webhook server."
type: "string"
type: "object"
served: true
storage: true
subresources:
status: {}
Loading