aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml')
-rw-r--r--vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml90
1 files changed, 90 insertions, 0 deletions
diff --git a/vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml b/vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml
new file mode 100644
index 00000000..39b78d9a
--- /dev/null
+++ b/vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml
@@ -0,0 +1,90 @@
+apiVersion: apiextensions.k8s.io/v1beta1
+kind: CustomResourceDefinition
+metadata:
+ name: grafanadatasources.onap.org
+spec:
+ group: onap.org
+ names:
+ kind: GrafanaDataSource
+ listKind: GrafanaDataSourceList
+ plural: grafanadatasources
+ singular: grafanadatasource
+ scope: Namespaced
+ subresources:
+ status: {}
+ validation:
+ 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/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/api-conventions.md#types-kinds'
+ type: string
+ metadata:
+ type: object
+ spec:
+ properties:
+ datasources:
+ description: 'INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
+ Important: Run "operator-sdk generate k8s" to regenerate code after
+ modifying this file Add custom validation using kubebuilder tags:
+ https://book-v1.book.kubebuilder.io/beyond_basics/generating_crd.html'
+ items:
+ properties:
+ access:
+ type: string
+ basicAuth:
+ type: boolean
+ basicAuthPassword:
+ type: string
+ basicAuthUser:
+ type: string
+ database:
+ type: string
+ isDefault:
+ type: boolean
+ jsonData:
+ additionalProperties:
+ type: string
+ type: object
+ name:
+ type: string
+ password:
+ type: string
+ readOnly:
+ type: boolean
+ type:
+ type: string
+ url:
+ type: string
+ user:
+ type: string
+ withCredentials:
+ type: boolean
+ required:
+ - name
+ - type
+ - url
+ - access
+ type: object
+ type: array
+ grafana:
+ additionalProperties:
+ type: string
+ type: object
+ required:
+ - datasources
+ - grafana
+ type: object
+ status:
+ type: object
+ version: v1alpha1
+ versions:
+ - name: v1alpha1
+ served: true
+ storage: true