visualization operator: Add datasource
[demo.git] / vnfs / DAaaS / microservices / visualization-operator / deploy / crds / onap_v1alpha1_grafanadatasource_crd.yaml
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 (file)
index 0000000..39b78d9
--- /dev/null
@@ -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