
* Add script to install clusterctl * Add controlplane yamls for target node * Add script to perform cluster move * Add script to zuul jobs Closes: #288 Change-Id: Ia6891df9c9b1da333396e76f11332deeb17ab807 Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
179 lines
7.1 KiB
YAML
179 lines
7.1 KiB
YAML
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
labels:
|
|
clusterctl.cluster.x-k8s.io: ""
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.2.8
|
|
creationTimestamp: null
|
|
name: machinehealthchecks.cluster.x-k8s.io
|
|
spec:
|
|
group: cluster.x-k8s.io
|
|
names:
|
|
categories:
|
|
- cluster-api
|
|
kind: MachineHealthCheck
|
|
listKind: MachineHealthCheckList
|
|
plural: machinehealthchecks
|
|
shortNames:
|
|
- mhc
|
|
- mhcs
|
|
singular: machinehealthcheck
|
|
scope: Namespaced
|
|
versions:
|
|
- additionalPrinterColumns:
|
|
- description: Maximum number of unhealthy machines allowed
|
|
jsonPath: .spec.maxUnhealthy
|
|
name: MaxUnhealthy
|
|
type: string
|
|
- description: Number of machines currently monitored
|
|
jsonPath: .status.expectedMachines
|
|
name: ExpectedMachines
|
|
type: integer
|
|
- description: Current observed healthy machines
|
|
jsonPath: .status.currentHealthy
|
|
name: CurrentHealthy
|
|
type: integer
|
|
name: v1alpha3
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: MachineHealthCheck is the Schema for the machinehealthchecks
|
|
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: Specification of machine health check policy
|
|
properties:
|
|
clusterName:
|
|
description: ClusterName is the name of the Cluster this object belongs
|
|
to.
|
|
minLength: 1
|
|
type: string
|
|
maxUnhealthy:
|
|
anyOf:
|
|
- type: integer
|
|
- type: string
|
|
description: Any further remediation is only allowed if at most "MaxUnhealthy"
|
|
machines selected by "selector" are not healthy.
|
|
x-kubernetes-int-or-string: true
|
|
nodeStartupTimeout:
|
|
description: Machines older than this duration without a node will
|
|
be considered to have failed and will be remediated.
|
|
type: string
|
|
selector:
|
|
description: Label selector to match machines whose health will be
|
|
exercised
|
|
properties:
|
|
matchExpressions:
|
|
description: matchExpressions is a list of label selector requirements.
|
|
The requirements are ANDed.
|
|
items:
|
|
description: A label selector requirement is a selector that
|
|
contains values, a key, and an operator that relates the key
|
|
and values.
|
|
properties:
|
|
key:
|
|
description: key is the label key that the selector applies
|
|
to.
|
|
type: string
|
|
operator:
|
|
description: operator represents a key's relationship to
|
|
a set of values. Valid operators are In, NotIn, Exists
|
|
and DoesNotExist.
|
|
type: string
|
|
values:
|
|
description: values is an array of string values. If the
|
|
operator is In or NotIn, the values array must be non-empty.
|
|
If the operator is Exists or DoesNotExist, the values
|
|
array must be empty. This array is replaced during a strategic
|
|
merge patch.
|
|
items:
|
|
type: string
|
|
type: array
|
|
required:
|
|
- key
|
|
- operator
|
|
type: object
|
|
type: array
|
|
matchLabels:
|
|
additionalProperties:
|
|
type: string
|
|
description: matchLabels is a map of {key,value} pairs. A single
|
|
{key,value} in the matchLabels map is equivalent to an element
|
|
of matchExpressions, whose key field is "key", the operator
|
|
is "In", and the values array contains only "value". The requirements
|
|
are ANDed.
|
|
type: object
|
|
type: object
|
|
unhealthyConditions:
|
|
description: UnhealthyConditions contains a list of the conditions
|
|
that determine whether a node is considered unhealthy. The conditions
|
|
are combined in a logical OR, i.e. if any of the conditions is met,
|
|
the node is unhealthy.
|
|
items:
|
|
description: UnhealthyCondition represents a Node condition type
|
|
and value with a timeout specified as a duration. When the named
|
|
condition has been in the given status for at least the timeout
|
|
value, a node is considered unhealthy.
|
|
properties:
|
|
status:
|
|
minLength: 1
|
|
type: string
|
|
timeout:
|
|
type: string
|
|
type:
|
|
minLength: 1
|
|
type: string
|
|
required:
|
|
- status
|
|
- timeout
|
|
- type
|
|
type: object
|
|
minItems: 1
|
|
type: array
|
|
required:
|
|
- clusterName
|
|
- selector
|
|
- unhealthyConditions
|
|
type: object
|
|
status:
|
|
description: Most recently observed status of MachineHealthCheck resource
|
|
properties:
|
|
currentHealthy:
|
|
description: total number of healthy machines counted by this machine
|
|
health check
|
|
format: int32
|
|
minimum: 0
|
|
type: integer
|
|
expectedMachines:
|
|
description: total number of machines counted by this machine health
|
|
check
|
|
format: int32
|
|
minimum: 0
|
|
type: integer
|
|
type: object
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|
|
status:
|
|
acceptedNames:
|
|
kind: ""
|
|
plural: ""
|
|
conditions: []
|
|
storedVersions: []
|