|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + creationTimestamp: null |
| 5 | + labels: |
| 6 | + app.kubernetes.io/name: openviz |
| 7 | + name: grafanadashboards.openviz.dev |
| 8 | +spec: |
| 9 | + group: openviz.dev |
| 10 | + names: |
| 11 | + categories: |
| 12 | + - grafana |
| 13 | + - openviz |
| 14 | + - appscode |
| 15 | + kind: GrafanaDashboard |
| 16 | + listKind: GrafanaDashboardList |
| 17 | + plural: grafanadashboards |
| 18 | + singular: grafanadashboard |
| 19 | + scope: Namespaced |
| 20 | + versions: |
| 21 | + - additionalPrinterColumns: |
| 22 | + - jsonPath: .status.phase |
| 23 | + name: Status |
| 24 | + type: string |
| 25 | + - jsonPath: .metadata.creationTimestamp |
| 26 | + name: Age |
| 27 | + type: date |
| 28 | + name: v1alpha1 |
| 29 | + schema: |
| 30 | + openAPIV3Schema: |
| 31 | + properties: |
| 32 | + apiVersion: |
| 33 | + description: 'APIVersion defines the versioned schema of this representation |
| 34 | + of an object. Servers should convert recognized schemas to the latest |
| 35 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 36 | + type: string |
| 37 | + kind: |
| 38 | + description: 'Kind is a string value representing the REST resource this |
| 39 | + object represents. Servers may infer this from the endpoint the client |
| 40 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 41 | + type: string |
| 42 | + metadata: |
| 43 | + properties: |
| 44 | + name: |
| 45 | + maxLength: 63 |
| 46 | + pattern: ^[a-z]([-a-z0-9]*[a-z0-9])?$ |
| 47 | + type: string |
| 48 | + type: object |
| 49 | + spec: |
| 50 | + properties: |
| 51 | + folderID: |
| 52 | + description: FolderID defines the Grafana folderID |
| 53 | + format: int64 |
| 54 | + type: integer |
| 55 | + grafana: |
| 56 | + description: Grafana defines the grafana app binding name for the |
| 57 | + GrafanaDashboard |
| 58 | + properties: |
| 59 | + apiGroup: |
| 60 | + type: string |
| 61 | + kind: |
| 62 | + type: string |
| 63 | + name: |
| 64 | + type: string |
| 65 | + type: object |
| 66 | + model: |
| 67 | + type: object |
| 68 | + x-kubernetes-preserve-unknown-fields: true |
| 69 | + overwrite: |
| 70 | + description: Overwrite defines the existing grafanadashboard with |
| 71 | + the same name(if any) should be overwritten or not |
| 72 | + type: boolean |
| 73 | + templatize: |
| 74 | + description: Templatize defines the fields which supports templating |
| 75 | + in Grafana GrafanaDashboard Model json |
| 76 | + properties: |
| 77 | + datasource: |
| 78 | + type: boolean |
| 79 | + title: |
| 80 | + type: boolean |
| 81 | + type: object |
| 82 | + type: object |
| 83 | + status: |
| 84 | + properties: |
| 85 | + conditions: |
| 86 | + description: Represents the latest available observations of a GrafanaDashboard |
| 87 | + current state. |
| 88 | + items: |
| 89 | + properties: |
| 90 | + lastTransitionTime: |
| 91 | + description: Last time the condition transitioned from one status |
| 92 | + to another. This should be when the underlying condition changed. If |
| 93 | + that is not known, then using the time when the API field |
| 94 | + changed is acceptable. |
| 95 | + format: date-time |
| 96 | + type: string |
| 97 | + message: |
| 98 | + description: A human readable message indicating details about |
| 99 | + the transition. This field may be empty. |
| 100 | + type: string |
| 101 | + observedGeneration: |
| 102 | + description: If set, this represents the .metadata.generation |
| 103 | + that the condition was set based upon. For instance, if .metadata.generation |
| 104 | + is currently 12, but the .status.condition[x].observedGeneration |
| 105 | + is 9, the condition is out of date with respect to the current |
| 106 | + state of the instance. |
| 107 | + format: int64 |
| 108 | + type: integer |
| 109 | + reason: |
| 110 | + description: The reason for the condition's last transition |
| 111 | + in CamelCase. The specific API may choose whether or not this |
| 112 | + field is considered a guaranteed API. This field may not be |
| 113 | + empty. |
| 114 | + type: string |
| 115 | + status: |
| 116 | + description: Status of the condition, one of True, False, Unknown. |
| 117 | + type: string |
| 118 | + type: |
| 119 | + description: Type of condition in CamelCase or in foo.example.com/CamelCase. |
| 120 | + Many .condition.type values are consistent across resources |
| 121 | + like Available, but because arbitrary conditions can be useful |
| 122 | + (see .node.status.conditions), the ability to deconflict is |
| 123 | + important. |
| 124 | + type: string |
| 125 | + required: |
| 126 | + - lastTransitionTime |
| 127 | + - message |
| 128 | + - reason |
| 129 | + - status |
| 130 | + - type |
| 131 | + type: object |
| 132 | + type: array |
| 133 | + dashboard: |
| 134 | + description: Dashboard indicates the updated grafanadashboard database |
| 135 | + properties: |
| 136 | + id: |
| 137 | + format: int64 |
| 138 | + type: integer |
| 139 | + orgID: |
| 140 | + format: int64 |
| 141 | + type: integer |
| 142 | + slug: |
| 143 | + type: string |
| 144 | + uid: |
| 145 | + type: string |
| 146 | + url: |
| 147 | + type: string |
| 148 | + version: |
| 149 | + format: int64 |
| 150 | + type: integer |
| 151 | + type: object |
| 152 | + observedGeneration: |
| 153 | + description: ObservedGeneration is the most recent generation observed |
| 154 | + for this resource. It corresponds to the resource's generation, |
| 155 | + which is updated on mutation by the API Server. |
| 156 | + format: int64 |
| 157 | + type: integer |
| 158 | + phase: |
| 159 | + description: Phase indicates the state this Vault cluster jumps in. |
| 160 | + type: string |
| 161 | + reason: |
| 162 | + description: The reason for the current phase |
| 163 | + type: string |
| 164 | + type: object |
| 165 | + type: object |
| 166 | + served: true |
| 167 | + storage: true |
| 168 | + subresources: |
| 169 | + status: {} |
0 commit comments