Skip to content

Commit d789df8

Browse files
committed
Merge branch 'main' into release/v2.4.7
2 parents 93c0c11 + b12cfe4 commit d789df8

File tree

3 files changed

+75
-1
lines changed

3 files changed

+75
-1
lines changed

.github/workflows/docker-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
type=semver,pattern=v{{version}}
7777
type=semver,pattern=v{{major}}.{{minor}}
7878
type=semver,pattern=v{{major}}
79-
type=raw,value=v${{version}}
79+
type=raw,value=v{{version}}
8080
8181
# Build and push Docker image with Buildx (don't push on PR)
8282
# https://github.com/docker/build-push-action

services/guitos/app.yaml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: guitos
5+
annotations:
6+
kubero.dev/template.architecture: "[]"
7+
kubero.dev/template.description: "A personal budgeting app that helps you figure out where your money went, plan your budget ahead of time and analyze past expenditures."
8+
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/5001560"
9+
kubero.dev/template.installation: ""
10+
kubero.dev/template.links: "[]"
11+
kubero.dev/template.screenshots: "[]"
12+
kubero.dev/template.source: "https://github.com/rare-magma/guitos"
13+
kubero.dev/template.categories: '["personal"]'
14+
kubero.dev/template.title: "guitos"
15+
kubero.dev/template.website: "https://guitos.app/"
16+
labels:
17+
manager: kubero
18+
spec:
19+
name: guitos
20+
deploymentstrategy: docker
21+
envVars: []
22+
extraVolumes: []
23+
cronjobs: []
24+
addons: []
25+
web:
26+
replicaCount: 1
27+
worker:
28+
replicaCount: 0
29+
image:
30+
containerPort: "3000"
31+
pullPolicy: Always
32+
repository: ghcr.io/rare-magma/guitos
33+
tag: latest

services/qdrant/app.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: qdrant
5+
annotations:
6+
kubero.dev/template.architecture: "[]"
7+
kubero.dev/template.description: "High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. Also available in the cloud"
8+
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/73504361"
9+
kubero.dev/template.installation: ""
10+
kubero.dev/template.links: "[]"
11+
kubero.dev/template.screenshots: "[]"
12+
kubero.dev/template.source: "https://github.com/qdrant/qdrant"
13+
kubero.dev/template.categories: '["database"]'
14+
kubero.dev/template.title: "qdrant"
15+
kubero.dev/template.website: "https://qdrant.tech/"
16+
labels:
17+
manager: kubero
18+
spec:
19+
name: qdrant
20+
deploymentstrategy: docker
21+
envVars: []
22+
extraVolumes:
23+
- accessMode: ReadWriteOnce
24+
accessModes:
25+
- ReadWriteOnce
26+
emptyDir: false
27+
mountPath: /qdrant/storage
28+
name: qdrant-volume
29+
size: 1Gi
30+
storageClass: standard
31+
cronjobs: []
32+
addons: []
33+
web:
34+
replicaCount: 1
35+
worker:
36+
replicaCount: 0
37+
image:
38+
containerPort: "6333"
39+
pullPolicy: Always
40+
repository: qdrant/qdrant
41+
tag: latest

0 commit comments

Comments
 (0)