Skip to content

Commit 2096a84

Browse files
authored
Merge pull request #525 from kubero-dev/template/add-azzimut
Template / Add Azzimut
2 parents 81f3616 + f076fcf commit 2096a84

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

services/azzimut/app.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: azimutt
5+
annotations:
6+
kubero.dev/template.architecture: "[]"
7+
kubero.dev/template.description: "Azimutt is a full-stack database exploration tool. It allows you to explore your database, run queries, and visualize the results."
8+
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/89384563"
9+
kubero.dev/template.installation: "A full list of environment variables can be found here : https://github.com/azimuttapp/azimutt/blob/main/.env.example"
10+
kubero.dev/template.links: "[]"
11+
kubero.dev/template.screenshots: "[]"
12+
kubero.dev/template.source: "https://github.com/azimuttapp/azimutt"
13+
kubero.dev/template.tags: '["database", "debug", "development"]'
14+
kubero.dev/template.title: "Azimutt"
15+
kubero.dev/template.website: "https://azimutt.app/"
16+
labels:
17+
manager: kubero
18+
spec:
19+
name: azimutt
20+
deploymentstrategy: docker
21+
envVars:
22+
- name: SECRET_KEY_BASE
23+
value: 1wOVZ9rWAqPcbVZdilZzBPLXFKNrUmLUzX0q9Z02LpOy2jVWZwa6ee4fU81tuN+W
24+
- name: DATABASE_URL
25+
value: postgres://azimutt:azimutt@azimutt-postgresql/azimutt
26+
- name: PHX_SERVER
27+
value: "true"
28+
- name: PHX_HOST
29+
value: localhost
30+
- name: FILE_STORAGE_ADAPTER
31+
value: local
32+
- name: AUTH_PASSWORD
33+
value: "true"
34+
extraVolumes: []
35+
cronjobs: []
36+
addons:
37+
- displayName: Postgresql
38+
env: []
39+
icon: /img/addons/pgsql.svg
40+
id: kubero-operator
41+
kind: KuberoPostgresql
42+
resourceDefinitions:
43+
KuberoPostgresql:
44+
apiVersion: application.kubero.dev/v1alpha1
45+
kind: KuberoPostgresql
46+
metadata:
47+
name: azimutt-postgresql
48+
spec:
49+
postgresql:
50+
global:
51+
postgresql:
52+
auth:
53+
database: azimutt
54+
password: azimutt
55+
postgresPassword: azimutt
56+
username: azimutt
57+
storageClass: standard
58+
primary:
59+
persistence:
60+
size: 1Gi
61+
version:
62+
latest: 0.1.5
63+
web:
64+
replicaCount: 1
65+
worker:
66+
replicaCount: 0
67+
image:
68+
containerPort: "4000"
69+
pullPolicy: Always
70+
repository: ghcr.io/azimuttapp/azimutt
71+
tag: main

0 commit comments

Comments
 (0)