Compare commits

...

7 Commits

Author SHA1 Message Date
Rostislav Dugin
f7f70a13eb Merge pull request #465 from databasus/develop
Develop
2026-03-24 18:01:35 +03:00
Rostislav Dugin
f1e289c421 Merge pull request #464 from kvendingoldo/main
feat: add support of imagePullSecrets
2026-03-24 18:00:15 +03:00
Alexander Sharov
c0952e057f feat: add support of imagePullSecrets
Signed-off-by: Alexander Sharov <kvendingoldo@yandex.ru>
2026-03-24 18:53:10 +04:00
Rostislav Dugin
b4d4e0a1d7 Merge pull request #459 from databasus/develop
FIX (readme): Fix typo in readme
2026-03-22 13:42:39 +03:00
Rostislav Dugin
c648e9c29f FIX (readme): Fix typo in readme 2026-03-22 13:41:56 +03:00
Rostislav Dugin
3fce6d2a99 Merge pull request #458 from databasus/develop
FIX (playground): Move index.html for playground into <noscript>
2026-03-22 09:58:48 +03:00
Rostislav Dugin
198b94ba9d FIX (playground): Move index.html for playground into <noscript> 2026-03-22 09:57:24 +03:00
5 changed files with 13 additions and 6 deletions

View File

@@ -341,7 +341,7 @@ if [ "\${IS_CLOUD:-false}" = "true" ]; then
close \$fh;
\$c =~ s/\\n/ /g;
}
s/<div id="root"><\\/div>/<div id="root"><!-- cloud-static-content -->\$c<\\/div>/
s/<div id="root"><\\/div>/<div id="root"><!-- cloud-static-content --><noscript>\$c<\\/noscript><\\/div>/
' /app/ui/build/index.html
fi
fi

View File

@@ -99,8 +99,8 @@ It is also important for Databasus that you are able to decrypt and restore back
### 📦 **Backup types**
- **Logical** — Native dump of the database in its engine-specific binary format. Compressed and streamed directly to storage with no intermediate files
- **Physical** — File-level copy of the entire database cluster. Faster backup and restore for large datasets compared to logical dumps (requires agent)
- **Incremental** — Physical base backup combined with continuous WAL segment archiving. Enables Point-in-Time Recovery (PITR) — restore to any second between backups. Designed for disaster recovery and near-zero data loss requirements (requires agent)
- **Physical** — File-level copy of the entire database cluster. Faster backup and restore for large datasets compared to logical dumps
- **Incremental** — Physical base backup combined with continuous WAL segment archiving. Enables Point-in-time recovery (PITR) — restore to any second between backups. Designed for disaster recovery and near-zero data loss requirements
### 🐳 **Self-hosted & secure**

View File

@@ -30,6 +30,7 @@ Then open `http://localhost:4005` in your browser.
| `image.repository` | Docker image | `databasus/databasus` |
| `image.tag` | Image tag | `latest` |
| `image.pullPolicy` | Image pull policy | `Always` |
| `imagePullSecrets` | Image pull secrets | `[]` |
| `replicaCount` | Number of replicas | `1` |
### Custom Root CA

View File

@@ -23,6 +23,10 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}

View File

@@ -6,6 +6,8 @@ image:
tag: null
pullPolicy: Always
imagePullSecrets: []
# StatefulSet configuration
replicaCount: 1
@@ -15,8 +17,8 @@ customRootCA: ""
# Service configuration
service:
type: ClusterIP
port: 4005 # Service port
targetPort: 4005 # Internal container port
port: 4005 # Service port
targetPort: 4005 # Internal container port
annotations: {}
# Headless service for StatefulSet
headless:
@@ -60,7 +62,7 @@ route:
kind: HTTPRoute
annotations: {}
hostnames:
- databasus.example.com
- databasus.example.com
parentRefs: []
filters: []
matches: []