-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add backup and restore methods for kibana dashboard
Signed-off-by: Md. Ishtiaq Islam <[email protected]>
- Loading branch information
1 parent
649baaf
commit 7ec1bac
Showing
73 changed files
with
33,402 additions
and
3,970 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
63 changes: 63 additions & 0 deletions
63
vendor/kubedb.dev/apimachinery/apis/catalog/v1alpha1/ferretdb_version_helpers.go
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
Copyright AppsCode Inc. and Contributors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha1 | ||
|
||
import ( | ||
"fmt" | ||
|
||
"kubedb.dev/apimachinery/apis" | ||
"kubedb.dev/apimachinery/apis/catalog" | ||
"kubedb.dev/apimachinery/crds" | ||
|
||
"kmodules.xyz/client-go/apiextensions" | ||
) | ||
|
||
func (f FerretDBVersion) CustomResourceDefinition() *apiextensions.CustomResourceDefinition { | ||
return crds.MustCustomResourceDefinition(SchemeGroupVersion.WithResource(ResourcePluralFerretDBVersion)) | ||
} | ||
|
||
var _ apis.ResourceInfo = &FerretDBVersion{} | ||
|
||
func (f FerretDBVersion) ResourceFQN() string { | ||
return fmt.Sprintf("%s.%s", ResourcePluralFerretDBVersion, catalog.GroupName) | ||
} | ||
|
||
func (f FerretDBVersion) ResourceShortCode() string { | ||
return ResourceCodeFerretDBVersion | ||
} | ||
|
||
func (f FerretDBVersion) ResourceKind() string { | ||
return ResourceKindFerretDBVersion | ||
} | ||
|
||
func (f FerretDBVersion) ResourceSingular() string { | ||
return ResourceSingularFerretDBVersion | ||
} | ||
|
||
func (f FerretDBVersion) ResourcePlural() string { | ||
return ResourcePluralFerretDBVersion | ||
} | ||
|
||
func (f FerretDBVersion) ValidateSpecs() error { | ||
if f.Spec.Version == "" || | ||
f.Spec.DB.Image == "" { | ||
return fmt.Errorf(`atleast one of the following specs is not set for ferretdbVersion "%v": | ||
spec.version, | ||
spec.db.image`, f.Name) | ||
} | ||
return nil | ||
} |
Oops, something went wrong.