Skip to content

Commit 173368d

Browse files
authored
Merge pull request #593 from kubero-dev/release/v2.4.6
Release/v2.4.6
2 parents 99b06e7 + 80a580d commit 173368d

35 files changed

+1318
-332
lines changed

Dockerfile

+11-8
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@ ENV NODE_ENV=development
33

44
WORKDIR /build
55

6+
## Server
67
COPY server ./server
7-
RUN cd server && \
8-
yarn install && \
8+
RUN cd /build/server && \
9+
yarn install
10+
RUN cd /build/server && \
911
yarn build && \
10-
yarn swaggergen && \
11-
cd ..
12+
yarn swaggergen
13+
14+
## Client
1215
COPY client ./client
13-
RUN cd client && \
14-
yarn install && \
15-
yarn build && \
16-
cd ..
16+
RUN cd /build/client && \
17+
yarn install
18+
RUN cd /build/client && \
19+
yarn build
1720

1821
FROM build AS release
1922
ARG VERSION=unknown

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ More [Screenshots](https://www.kubero.dev/docs/screenshots) and a full video on
1717

1818
## Features ([DEMO](https://demo.kubero.dev))
1919
- Create unlimited CI/CD pipelines with up to 4 separate **staging environments** for all your applications
20-
- Automatically build, start, and cleanup **review-apps** after opening/closing a pull request
20+
- Automatically build, start, and cleanup **review-apps** after opening/closing a pull request (GitOps)
2121
- Automatic **redeployment** of the app based on a push to a branch or tag
2222
- Create scheduled tasks as **cronjobs**
2323
- Deploy well known apps with **templates** [(WordPress, Grafana, ...)](https://www.kubero.dev/templates)
@@ -29,7 +29,9 @@ More [Screenshots](https://www.kubero.dev/docs/screenshots) and a full video on
2929
- Comes with an **API and CLI** to integrate with your existing tools and CI/CD
3030
- Built-in **container web console**
3131
- Build and deployment **Notifications** to Discord/Slack/Webhooks
32-
- Integrated **metrics and monitoring**
32+
- Integrated application **metrics and monitoring**
33+
- **Multi-tenancy** support
34+
- Simple configuration of **Basic Auth** for your application
3335
- **SSO** with GitHub and Oauth2
3436

3537

@@ -59,6 +61,8 @@ Kubero is Kubernetes native and runs with two containers on any Kubernetes insta
5961
| <img src="client/public/img/addons/pgsql.svg" width="30px" style="vertical-align: middle; margin: 10px"> | Crunchy Postgres Cluster | [Crunchy Data](https://artifacthub.io/packages/olm/community-operators/postgresql) | |
6062
| <img src="client/public/img/addons/redis.svg" width="30px" style="vertical-align: middle; margin: 10px"> | Redis Cluster | [Opstree](https://artifacthub.io/packages/olm/community-operators/redis-operator) | |
6163
| <img src="client/public/img/addons/CockroachDB.svg" width="30px" style="vertical-align: middle; margin: 10px"> | CockroachDB | [CockroachDB](https://artifacthub.io/packages/olm/community-operators/cockroachdb) | |
64+
| <img src="client/public/img/addons/clickhouse.svg" width="30px" style="vertical-align: middle; margin: 10px"> | Clickhouse | [Altinity ](https://artifacthub.io/packages/olm/community-operators/clickhouse) | |
65+
6266

6367

6468
\* Ships with the Kubero Operator
+1
Loading
Loading

client/public/img/icons/hexagon1-empty-bold.svg

+7
Loading

client/public/img/icons/hexagon1.svg

+7
Loading
Loading
Loading
+12
Loading

client/public/img/icons/hexagon3.svg

+7
Loading

client/src/components/addons/index.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<v-row class="justify-space-between">
55
<v-col cols="6" sm="6" md="6" lg="6" xl="6">
6-
<h1>Add-ons</h1>
6+
<!--<h1>Add-ons</h1>-->
77
</v-col>
88
</v-row>
99
<v-row>
@@ -49,6 +49,7 @@
4949
style="top: -50px;"
5050
color="primary"
5151
dark
52+
elevation="0"
5253
@click="openInstallDialog(addon)"
5354
>
5455
Installation

0 commit comments

Comments
 (0)