-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from slintes/update-coordination-version
Update coordination version
- Loading branch information
Showing
9 changed files
with
369 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
225 changes: 225 additions & 0 deletions
225
...aintenance-operator/v0.9.1/manifests/node-maintenance-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
75 changes: 75 additions & 0 deletions
75
...intenance-operator/v0.9.1/manifests/nodemaintenance.kubevirt.io_nodemaintenances_crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: nodemaintenances.nodemaintenance.kubevirt.io | ||
spec: | ||
group: nodemaintenance.kubevirt.io | ||
names: | ||
kind: NodeMaintenance | ||
listKind: NodeMaintenanceList | ||
plural: nodemaintenances | ||
singular: nodemaintenance | ||
scope: Cluster | ||
versions: | ||
- name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: NodeMaintenance is the Schema for the nodemaintenances 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: NodeMaintenanceSpec defines the desired state of NodeMaintenance | ||
properties: | ||
nodeName: | ||
description: Node name to apply maintanance on/off | ||
type: string | ||
reason: | ||
description: Reason for maintanance | ||
type: string | ||
required: | ||
- nodeName | ||
type: object | ||
status: | ||
description: NodeMaintenanceStatus defines the observed state of NodeMaintenance | ||
properties: | ||
errorOnLeaseCount: | ||
description: Consecutive number of errors upon obtaining a lease | ||
type: integer | ||
evictionPods: | ||
description: EvictionPods is the total number of pods up for eviction | ||
from the start | ||
type: integer | ||
lastError: | ||
description: LastError represents the latest error if any in the latest | ||
reconciliation | ||
type: string | ||
pendingPods: | ||
description: PendingPods is a list of pending pods for eviction | ||
items: | ||
type: string | ||
type: array | ||
phase: | ||
description: Phase is the represtation of the maintenance progress | ||
(Running,Succeeded,Failed) | ||
type: string | ||
totalpods: | ||
description: TotalPods is the total number of all pods on the node | ||
from the start | ||
type: integer | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
7 changes: 7 additions & 0 deletions
7
manifests/node-maintenance-operator/v0.9.1/metadata/annotations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
annotations: | ||
operators.operatorframework.io.bundle.channel.default.v1: "4.8" | ||
operators.operatorframework.io.bundle.channels.v1: "4.8" | ||
operators.operatorframework.io.bundle.manifests.v1: manifests/ | ||
operators.operatorframework.io.bundle.mediatype.v1: registry+v1 | ||
operators.operatorframework.io.bundle.metadata.v1: metadata/ | ||
operators.operatorframework.io.bundle.package.v1: node-maintenance-operator |
4 changes: 4 additions & 0 deletions
4
manifests/node-maintenance-operator/v0.9.1/node-maintenance-operator.package.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
packageName: node-maintenance-operator | ||
channels: | ||
- name: "4.8" | ||
currentCSV: node-maintenance-operator.v0.9.1 |
Oops, something went wrong.