-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade script updates (init container) (#86)
- Loading branch information
1 parent
348d89e
commit 47500ef
Showing
9 changed files
with
111 additions
and
113 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ rules: | |
resources: | ||
- customresourcedefinitions | ||
verbs: | ||
- create | ||
- get | ||
- list | ||
- update | ||
|
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
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ rules: | |
resources: | ||
- customresourcedefinitions | ||
verbs: | ||
- create | ||
- get | ||
- list | ||
- update | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.9.2 | ||
creationTimestamp: null | ||
name: dellcsimigrationgroups.replication.storage.dell.com | ||
spec: | ||
group: replication.storage.dell.com | ||
names: | ||
kind: DellCSIMigrationGroup | ||
listKind: DellCSIMigrationGroupList | ||
plural: dellcsimigrationgroups | ||
shortNames: | ||
- mg | ||
singular: dellcsimigrationgroup | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .metadata.creationTimestamp | ||
name: AGE | ||
type: date | ||
- description: State of the CR | ||
jsonPath: .status.state | ||
name: State | ||
type: string | ||
- description: Source ID | ||
jsonPath: .spec.sourceID | ||
name: Source ID | ||
type: string | ||
- description: Target ID | ||
jsonPath: .spec.targetID | ||
name: Target ID | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
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: DellCSIMigrationGroupSpec defines the desired state of DellCSIMigrationGroup | ||
properties: | ||
driverName: | ||
type: string | ||
migrationGroupAttributes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
sourceID: | ||
type: string | ||
targetID: | ||
type: string | ||
required: | ||
- driverName | ||
- migrationGroupAttributes | ||
- sourceID | ||
- targetID | ||
type: object | ||
status: | ||
description: DellCSIMigrationGroupStatus defines the observed state of | ||
DellCSIMigrationGroup | ||
properties: | ||
lastAction: | ||
type: string | ||
state: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
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