Skip to content

Commit

Permalink
Merge pull request #593 from kubero-dev/release/v2.4.6
Browse files Browse the repository at this point in the history
Release/v2.4.6
  • Loading branch information
mms-gianni authored Jan 18, 2025
2 parents 99b06e7 + 80a580d commit 173368d
Show file tree
Hide file tree
Showing 35 changed files with 1,318 additions and 332 deletions.
19 changes: 11 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@ ENV NODE_ENV=development

WORKDIR /build

## Server
COPY server ./server
RUN cd server && \
yarn install && \
RUN cd /build/server && \
yarn install
RUN cd /build/server && \
yarn build && \
yarn swaggergen && \
cd ..
yarn swaggergen

## Client
COPY client ./client
RUN cd client && \
yarn install && \
yarn build && \
cd ..
RUN cd /build/client && \
yarn install
RUN cd /build/client && \
yarn build

FROM build AS release
ARG VERSION=unknown
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ More [Screenshots](https://www.kubero.dev/docs/screenshots) and a full video on

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


Expand Down Expand Up @@ -59,6 +61,8 @@ Kubero is Kubernetes native and runs with two containers on any Kubernetes insta
| <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) | |
| <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) | |
| <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) | |
| <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) | |



\* Ships with the Kubero Operator
Expand Down
1 change: 1 addition & 0 deletions client/public/img/addons/clickhouse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions client/public/img/icons/hexagon1-empty-bold-tp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions client/public/img/icons/hexagon1-empty-bold.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions client/public/img/icons/hexagon1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions client/public/img/icons/hexagon3-empty-bold-tp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/img/icons/hexagon3-empty-bold.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions client/public/img/icons/hexagon3-empty.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions client/public/img/icons/hexagon3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion client/src/components/addons/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<v-row class="justify-space-between">
<v-col cols="6" sm="6" md="6" lg="6" xl="6">
<h1>Add-ons</h1>
<!--<h1>Add-ons</h1>-->
</v-col>
</v-row>
<v-row>
Expand Down Expand Up @@ -49,6 +49,7 @@
style="top: -50px;"
color="primary"
dark
elevation="0"
@click="openInstallDialog(addon)"
>
Installation
Expand Down
Loading

0 comments on commit 173368d

Please sign in to comment.