Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 50 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,59 @@
SHELL := /bin/bash
SHELL := /bin/bash

run: ## Run Docusaurus
docker compose up -d

install: ## Install Docusaurus
install: ## Install dependencies
docker compose run --rm doc yarn

logs: ## View Docusaurus logs
docker compose logs -f doc

run-es: ## Run Docusaurus in ESP version
docker compose run --rm -p 4000:4000 doc yarn run startes
run-es: ## Run Docusaurus in development mode (Spanish)
docker compose run --rm -p 4000:4000 doc yarn run startes

# ==========================================
# Production Build Commands
# ==========================================

build: ## Build for production (all locales)
docker compose run --rm doc yarn run build

build-en: ## Build for production (English only)
docker compose run --rm -e DOCUSAURUS_DEFAULT_LOCALE=en doc yarn run build

build-es: ## Build for production (Spanish only)
docker compose run --rm -e DOCUSAURUS_DEFAULT_LOCALE=es doc yarn run build

serve: ## Serve production build locally (Search & Multilanguage work here)
docker compose run --rm -p 4000:4000 doc yarn run serve

# ==========================================
# CMS Commands
# ==========================================

collections: ## Regenerate Sveltia CMS config.yml from folder structure
python3 generate_cms_config.py

tutorials: ## Regenerate tutorials-generated.json from MDX files
python3 generate_tutorials.py

# ==========================================
# Utility Commands
# ==========================================

clear: ## Clear Docusaurus cache
docker compose run --rm doc yarn run clear

translations: ## Generate translation files
docker compose run --rm doc yarn run write-translations

# ==========================================
# Help
# ==========================================

help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'

.PHONY: install run run-es build build-en build-es serve collections tutorials clear translations help
.DEFAULT_GOAL := help
28 changes: 28 additions & 0 deletions changelog/2023-08-23-V1.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: "Version 1.0.0"
slug: v1-0-0
date: 2023-08-23
tags: [release]
---

# 🚀 Version 1.0.0

<!--truncate-->

23/08/2023

## New Features

- **Volume Configuration:** You can now configure volumes in project environments directly from the form.
- **Nightly Shutdown with Timezone:** Added support for selecting time zones in the nightly shutdown.
- **Manual Cluster Startup:** New button to manually start clusters.
- **CloudFront Integration:** Support for using CloudFront to improve content delivery.
- **Automatic Backups:** You can configure automatic backups for dependencies.
- **Graviton Instances:** Support for using Graviton instances on nodes.
- **Encryption:** Implemented encryption in StackSettings for added security.

## Bug Fixes

- Resolved an issue in the billing API and cost estimation.
- Fixed errors when deleting Providers and VPNs.
- You can now delete ACM certificates used by a Load Balancer without problems.
18 changes: 18 additions & 0 deletions changelog/2023-08-29-V1.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Version 1.0.1"
slug: v1-0-1
date: 2023-08-29
tags: [release]
---

# 🚀 Version 1.0.1


<!--truncate-->

29/08/2023

## New Features

- **Subscription Management:** Login and token updates are controlled based on the subscription status. Additionally, a new API was implemented to register users and companies, validating pending subscriptions, with a new model to better manage subscriptions, integrating AwsClient.
- **Marketplace Onboarding:** Simplified process for creating users who come from a marketplace.
22 changes: 22 additions & 0 deletions changelog/2023-09-04-V1.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Version 1.0.2"
slug: v1-0-2
date: 2023-09-04
tags: [release]
---

# 🚀 Version 1.0.2

<!--truncate-->

04/09/2023

## New Features

- **Deployment Optimization:** Simplified the deployment process and project environment (ProjectEnv) editing, facilitating configuration and deployment.
- **Resource and Configuration Adjustments:** You can now create custom aliases for buckets.
- **Health Check Improvements:** The readiness probe for services in the development account is now optional.

## Bug Fixes

- Solved issues related to VPN and security parameter configuration.
23 changes: 23 additions & 0 deletions changelog/2023-09-25-V1.0.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "Version 1.0.3"
slug: v1-0-3
date: 2023-09-25
tags: [release]
---

# 🚀 Version 1.0.3

<!--truncate-->

25/09/2023

## New Features

- **Management Buttons and Form Improvements:** Added buttons for resource management and improved variable mapping forms.
- **Cronjobs and Domain Regeneration:** You can now stop or activate cronjobs and regenerate domains.

## Bug Fixes

- Solved the issue of obtaining the VPN URI in Pritunl.
- Fixed the account selection issue for viewer users.
- Improved the handling of health check information sent to the backend.
23 changes: 23 additions & 0 deletions changelog/2023-10-11-V1.0.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "Version 1.0.4"
slug: v1-0-4
date: 2023-10-11
tags: [release]
---

# 🚀 Version 1.0.4

<!--truncate-->

11/10/2023

## New Features

- **Refactoring and Improvements:** Refactored the dashboard and improved log visualization and the management of entity deletion.

## Bug Fixes

- Fixed user editing issues.
- Corrected cluster state management.
- Solved problems with environment domains.
- Fixed error handling in S3 responses with CloudFront.
17 changes: 17 additions & 0 deletions changelog/2023-10-27-V1.0.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "Version 1.0.5"
slug: v1-0-5
date: 2023-10-27
tags: [release]
---

# 🚀 Version 1.0.5

<!--truncate-->

27/10/2023

## Bug Fixes

- Solved deployment issues and fixed Karpenter with spot instances.
- Fixed issues in deleting entities and validating service URLs.
25 changes: 25 additions & 0 deletions changelog/2023-11-06-V1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: "Version 1.1.0"
slug: v1-1-0
date: 2023-11-06
tags: [release]
---

# 🚀 Version 1.1.0

<!--truncate-->

06/11/2023

## New Features

- **Vargroups Management:** Added the option to show vargroups in the forms for services, workers, hooks, and cronjobs.
- **Kubecost:** Integrated Kubecost with Prometheus-stack.

## Bug Fixes

- Solved the issue with Karpenter on spot instances.
- Fixed user roles and user editing.
- Corrected problems when deleting an environment and the incorrect deletion of domains.
- Fixed the error when trying to manually start the cluster.
- Resolved an error in generating hooks.
18 changes: 18 additions & 0 deletions changelog/2023-12-05-V1.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Version 1.1.1"
slug: v1-1-1
date: 2023-12-05
tags: [release]
---

# 🚀 Version 1.1.1

<!--truncate-->

05/12/2023

## New Features

- **Log Viewer in Jobs:** Added a log viewer in the job list, similar to what already exists for deployments.
- **Dashboard v2:** Improvements in the second version of the Dashboard, with more options and better organization of information.
- **Cluster Certificates:** Cluster certificates are now automatically deleted and updated to prevent expiration issues.
26 changes: 26 additions & 0 deletions changelog/2024-01-05-V1.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "Version 1.2.0"
slug: v1-2-0
date: 2024-01-05
tags: [release]
---

# 🚀 Version 1.2.0

<!--truncate-->

05/01/2024

## New Features

- **Logs in Grafana:** A data source has been configured in Grafana to display logs from S3.
- **Cluster Update Button:** A button has been added to allow cluster updates from the interface.
- **User Activity Log:** An activity log for user actions has been created.
- **Domain Validation Deploy:** You can now create a deploy that runs once domains are validated.
- **Two-Factor Authentication:** Two-factor authentication (2FA) has been added to the login for enhanced security.

## Bug Fixes

- An issue with builds using the same branch as the default has been fixed.
- Log reading has been improved for faster processing.
- Various frontend optimizations, including styles, search, and pending resource visibility, have been made.
22 changes: 22 additions & 0 deletions changelog/2024-01-12-V1.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Version 1.2.1"
slug: v1-2-1
date: 2024-12-01
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Fecha incorrecta en el frontmatter - hay que agarrarlo a las piñas.

La fecha en el frontmatter dice 2024-12-01 (1 de diciembre 2024), pero el nombre del archivo y el contenido indican 2024-01-12 (12 de enero 2024). Esta inconsistencia va a causar problemas con el ordenamiento de los changelogs.

🔧 Arreglo propuesto
-date: 2024-12-01
+date: 2024-01-12
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
date: 2024-12-01
date: 2024-01-12
🤖 Prompt for AI Agents
In @changelog/2024-01-12-V1.2.1.md at line 4, El frontmatter en el archivo
changelog/2024-01-12-V1.2.1.md tiene la fecha incorrecta; reemplaza el valor del
campo `date` que actualmente es `2024-12-01` por `2024-01-12` para que coincida
con el nombre del archivo y el contenido, asegurando consistencia en el
ordenamiento de los changelogs.

tags: [release]
---

# 🚀 Version 1.2.1

<!--truncate-->

12/01/2024

## New Features

- **Vargroup Form Optimization:** Usability improvements have been made to the Vargroup forms.
- **Provider and User Account Deletion:** Deleting a provider now also deletes associated user accounts.

## Bug Fixes

- A bug in ACM certificate regeneration has been fixed.
- A provider deletion issue has been corrected.
22 changes: 22 additions & 0 deletions changelog/2024-01-25-V1.2.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Version 1.2.2"
slug: v1-2-2
date: 2024-01-25
tags: [release]
---

# 🚀 Version 1.2.2

<!--truncate-->

25/01/2024

## New Features

- **Domain Validation Button:** A "check validation" button has been added to the domain drawer for easier domain management.
- **Activity Log Table:** An activity log table has been created.
- **Access Key Encryption:** Access keys for code version providers (GIT) are now encrypted.

## Bug Fixes

- An issue where the API didn't correctly recreate the ACM module during regeneration has been fixed.
21 changes: 21 additions & 0 deletions changelog/2024-02-05-V1.2.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: "Version 1.2.3"
slug: v1-2-3
date: 2024-02-05
tags: [release]
---

# 🚀 Version 1.2.3

<!--truncate-->

05/02/2024

## New Features

- **Alias Decoupling in Web Services:** The creation of aliases is now separated from the web services form.
- **IAM Password Reset:** It is now possible to reset the IAM password for a user.

## Bug Fixes

- A minor issue with release tasks has been corrected.
22 changes: 22 additions & 0 deletions changelog/2024-02-15-V1.2.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Version 1.2.4"
slug: v1-2-4
date: 2024-02-15
tags: [release]
---

# 🚀 Version 1.2.4

<!--truncate-->

15/02/2024

## New Features

- **Cluster Switcher Optimization:** Cluster selector behavior has been optimized.
- **Login in AWS Subscription Flow:** The AWS subscription flow now includes the ability to log in directly.

## Bug Fixes

- Callback issues for Git integrations and Docker file path for GitLab have been resolved.
- Minor billing screen-related bugs have been fixed.
28 changes: 28 additions & 0 deletions changelog/2024-03-01-V1.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: "Version 1.3.0"
slug: v1-3-0
date: 2024-03-01
tags: [release]
---

# 🚀 Version 1.3.0

<!--truncate-->

01/03/2024

## New Features

- **Project Details View:** A detailed project view is now available in the new interface.
- **RDS Metrics API:** A new API for displaying RDS metrics has been added, improving resource visibility.
- **Improved LogViewer:** LogViewer loading is now faster and more efficient.
- **Enhanced Onboarding:** A new onboarding process has been implemented for easier setup.
- **Redis Monitoring:** Redis monitoring has been added, improving infrastructure supervision.
- **RDS Replica Configuration:** The option to configure replicas in the RDS Dependency has been added for more flexibility.
- **Domain Deletion Status:** Domain deletion now creates a deploy with `pending-approval` status, rather than an automatic deploy.
- **Job Workload Improvements:** Job workload has been improved, allowing automatic retries in case of an initial failure.

## Bug Fixes

- Bitbucket integration issues have been resolved.
- Undefined value issues in Vargroups have been fixed.
Loading