Add KubeStash backup for oracle & solr editor options - #1114
Draft
ArnobKumarSaha wants to merge 1 commit into
Draft
Add KubeStash backup for oracle & solr editor options#1114ArnobKumarSaha wants to merge 1 commit into
ArnobKumarSaha wants to merge 1 commit into
Conversation
Signed-off-by: Arnob kumar saha <arnob@appscode.com>
ArnobKumarSaha
marked this pull request as draft
August 3, 2026 11:42
Member
Author
|
Need august KubeDB release |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #1113 (neo4j & qdrant), covering Oracle and Solr.
Oracle
charts/kubedbcom-oracle-editor-options/templates/kubestash/backupconfiguration.yaml(new) — targetkind: Oracle, addonoracle-addon, tasklogical-backup. The options UI already had the "Enable Backup?" switch and thesetBackup/onBackupSwitchhandlers, andspec.admin.backup.enablewas alreadytrue/true.Solr
The
BackupConfigurationtemplate was already committed but could never render, becausespec.admin.backup.enablewasfalse/falseand the UI had no way to turn backup on.values.yaml—spec.admin.backup.enable→default: true,toggle: true(README regenerated to match)ui/functions.js— addedonBackupSwitchandsetBackup, and exported bothui/create-ui.yaml— added the "Enable Backup?" switchHeads-up on the addons
kubedb-kubestash-catalogcurrently has nooracle-addonand nosolr-addon(it ships addons for cassandra, clickhouse, druid, elasticsearch, mariadb, mongodb, mssqlserver, mysql, neo4j, opensearch, postgres, qdrant, redis, singlestore, zookeeper).kubedb.dev/docslikewise has nobackup/guide for either. Until those addons land, a rendered BackupConfiguration for Oracle or Solr will reference a non-existent Addon and KubeStash will not resolve it. Merging this ahead of the catalog work is intentional; it should not reach users before the addons exist.Verified
helm templateon both charts: nothing renders with default values; withspec.backup.tool=KubeStashplus storageRef / retentionPolicy / encryptionSecret / schedule, a validBackupConfigurationrenders. Solr now renders fromspec.backup.tool=KubeStashalone, confirming the toggle flip.ui/create-ui.yamlparses as YAML andui/functions.jspassesnode --check.