Last active
August 14, 2020 09:57
-
-
Save descrepes/326009f8e342bef0fbe5749b15088be1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
--- | |
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: accounts.zenko.mycompany.com | |
spec: | |
group: zenko.mycompany.com | |
versions: | |
- name: v1 | |
served: true | |
storage: true | |
scope: Namespaced | |
names: | |
plural: accounts | |
singular: account | |
kind: ZenkoAccount | |
listKind: ZenkoAccountList | |
shortNames: | |
- znkacnt | |
additionalPrinterColumns: | |
- name: Age | |
type: date | |
format: date-time | |
JSONPath: .metadata.creationTimestamp | |
description: When the Zenko account was created | |
- name: Customer | |
type: string | |
JSONPath: .spec.account | |
description: The Zenko customer account |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment