diff options
author | Srivahni <srivahni.chivukula@intel.com> | 2019-08-23 11:19:26 -0700 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2019-09-06 12:44:13 +0000 |
commit | f2d37cb632bb1706f3e223776e72e50253d4025c (patch) | |
tree | 4cd0be0c4b7777c17296604c1fca127ad9053a0a /vnfs/DAaaS/microservices/visualization-operator/deploy/crds | |
parent | 32ec6c9216242b0d9cf76da93eb74b60b6dae7c1 (diff) |
visualization operator: Add datasource
Added support to create a grafana datasource dynamically
using GrafanaDataSource CR.
Issue-ID: ONAPARC-393
Signed-off-by: Srivahni <srivahni.chivukula@intel.com>
Change-Id: Iaa645c5c4f303afbcec114c00e35cd6e6ae6c98c
Diffstat (limited to 'vnfs/DAaaS/microservices/visualization-operator/deploy/crds')
-rw-r--r-- | vnfs/DAaaS/microservices/visualization-operator/deploy/crds/onap_v1alpha1_grafanadatasource_crd.yaml | 90 |
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 |