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

Lines changed: 11 additions & 8 deletions
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

Lines changed: 6 additions & 2 deletions
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
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 50 additions & 0 deletions
Loading

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

Lines changed: 7 additions & 0 deletions
Loading

client/public/img/icons/hexagon1.svg

Lines changed: 7 additions & 0 deletions
Loading
Lines changed: 85 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

client/public/img/icons/hexagon3.svg

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)