-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tridentconfigurator crd permissions for operator installation
- Loading branch information
1 parent
b2c5790
commit 1fdbe7b
Showing
5 changed files
with
86 additions
and
0 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
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
54 changes: 54 additions & 0 deletions
54
deploy/crds/trident.netapp.io_tridentconfigurators_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,54 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: tridentconfigurators.trident.netapp.io | ||
spec: | ||
group: trident.netapp.io | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true | ||
subresources: | ||
status: {} | ||
additionalPrinterColumns: | ||
- name: Phase | ||
type: string | ||
description: The backend config phase | ||
priority: 0 | ||
jsonPath: .status.phase | ||
- name: Status | ||
type: string | ||
description: The result of the last operation | ||
priority: 0 | ||
jsonPath: .status.lastOperationStatus | ||
- name: Cloud Provider | ||
type: string | ||
description: The name of cloud provider | ||
priority: 0 | ||
jsonPath: .status.cloudProvider | ||
- name: Storage Driver | ||
type: string | ||
description: The storage driver type | ||
priority: 1 | ||
jsonPath: .spec.storageDriverName | ||
- name: Deletion Policy | ||
type: string | ||
description: The deletion policy | ||
priority: 1 | ||
jsonPath: .status.deletionPolicy | ||
scope: Cluster | ||
names: | ||
plural: tridentconfigurators | ||
singular: tridentconfigurator | ||
kind: TridentConfigurator | ||
shortNames: | ||
- tconf | ||
- tconfigurator | ||
categories: | ||
- trident | ||
- trident-internal | ||
- trident-external |