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

operator [N] stolostron-engine (0.1.0) #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: v1
data:
controller_manager_config.yaml: |
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1
kind: ControllerManagerConfig
health:
healthProbeBindAddress: :8081
metrics:
bindAddress: 127.0.0.1:8080
webhook:
port: 9443
leaderElection:
leaderElect: true
resourceName: 797f9276.open-cluster-management.io
kind: ConfigMap
metadata:
name: multicluster-engine-operator-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
annotations:
service.beta.openshift.io/serving-cert-secret-name: multicluster-engine-operator-webhook
creationTimestamp: null
name: multicluster-engine-operator-webhook-service
spec:
ports:
- port: 443
targetPort: 9443
selector:
control-plane: backplane-operator
status:
loadBalancer: {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,217 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.10.0
creationTimestamp: null
name: multiclusterengines.multicluster.openshift.io
spec:
group: multicluster.openshift.io
names:
kind: MultiClusterEngine
listKind: MultiClusterEngineList
plural: multiclusterengines
shortNames:
- mce
singular: multiclusterengine
scope: Cluster
versions:
- additionalPrinterColumns:
- description: The overall state of the MultiClusterEngine
jsonPath: .status.phase
name: Status
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
description: MultiClusterEngine is the Schema for the multiclusterengines
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
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
metadata:
type: object
spec:
description: MultiClusterEngineSpec defines the desired state of MultiClusterEngine
properties:
availabilityConfig:
description: 'Specifies deployment replication for improved availability.
Options are: Basic and High (default)'
type: string
imagePullSecret:
description: Override pull secret for accessing MultiClusterEngine
operand and endpoint images
type: string
nodeSelector:
additionalProperties:
type: string
description: Set the nodeselectors
type: object
overrides:
description: Developer Overrides
properties:
components:
description: Provides optional configuration for components
items:
description: ComponentConfig provides optional configuration
items for individual components
properties:
enabled:
type: boolean
name:
type: string
required:
- enabled
- name
type: object
type: array
imagePullPolicy:
description: Pull policy for the MCE images
type: string
infrastructureCustomNamespace:
description: Namespace to install Assisted Installer operator
type: string
type: object
targetNamespace:
description: Location where MCE resources will be placed
type: string
tolerations:
description: Tolerations causes all components to tolerate any taints.
items:
description: The pod this Toleration is attached to tolerates any
taint that matches the triple <key,value,effect> using the matching
operator <operator>.
properties:
effect:
description: Effect indicates the taint effect to match. Empty
means match all taint effects. When specified, allowed values
are NoSchedule, PreferNoSchedule and NoExecute.
type: string
key:
description: Key is the taint key that the toleration applies
to. Empty means match all taint keys. If the key is empty,
operator must be Exists; this combination means to match all
values and all keys.
type: string
operator:
description: Operator represents a key's relationship to the
value. Valid operators are Exists and Equal. Defaults to Equal.
Exists is equivalent to wildcard for value, so that a pod
can tolerate all taints of a particular category.
type: string
tolerationSeconds:
description: TolerationSeconds represents the period of time
the toleration (which must be of effect NoExecute, otherwise
this field is ignored) tolerates the taint. By default, it
is not set, which means tolerate the taint forever (do not
evict). Zero and negative values will be treated as 0 (evict
immediately) by the system.
format: int64
type: integer
value:
description: Value is the taint value the toleration matches
to. If the operator is Exists, the value should be empty,
otherwise just a regular string.
type: string
type: object
type: array
type: object
status:
description: MultiClusterEngineStatus defines the observed state of MultiClusterEngine
properties:
components:
items:
description: ComponentCondition contains condition information for
tracked components
properties:
kind:
description: The resource kind this condition represents
type: string
lastTransitionTime:
description: LastTransitionTime is the last time the condition
changed from one status to another.
format: date-time
type: string
message:
description: Message is a human-readable message indicating
details about the last status change.
type: string
name:
description: The component name
type: string
reason:
description: Reason is a (brief) reason for the condition's
last status change.
type: string
status:
description: Status is the status of the condition. One of True,
False, Unknown.
type: string
type:
description: Type is the type of the cluster condition.
type: string
type: object
type: array
conditions:
items:
properties:
lastTransitionTime:
description: LastTransitionTime is the last time the condition
changed from one status to another.
format: date-time
type: string
lastUpdateTime:
description: The last time this condition was updated.
format: date-time
type: string
message:
description: Message is a human-readable message indicating
details about the last status change.
type: string
reason:
description: Reason is a (brief) reason for the condition's
last status change.
type: string
status:
description: Status is the status of the condition. One of True,
False, Unknown.
type: string
type:
description: Type is the type of the cluster condition.
type: string
type: object
type: array
currentVersion:
description: CurrentVersion is the most recent version successfully
installed
type: string
desiredVersion:
description: DesiredVersion is the version the operator is reconciling
towards
type: string
phase:
description: Latest observed overall state
type: string
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading