-
Notifications
You must be signed in to change notification settings - Fork 1
Dev to Develop #139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Dev to Develop #139
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d9ce42c
feat: added sveltia cms and new makefile
fuzilogik2019 f28a28f
chore: enhance homepage with new header and recent tutorials section …
gonferreyra 23fab7e
feat: started tutorials and changelog implementations
fuzilogik2019 2ed88a9
chore: some bugfixes to tutorials page filters and test changelog
fuzilogik2019 0332185
chore: more bugfixes to tutorial section
fuzilogik2019 1f5234d
chore: more bugfixes
fuzilogik2019 4218896
chore: removed null values from tutorials
fuzilogik2019 1519f42
chore: added script to generate tutorial index
fuzilogik2019 d301051
feat: standarized cards for tutorials
fuzilogik2019 adb752f
chore: more tutorials cards fixes
fuzilogik2019 41c781b
feat: update homepage header with translations and separate releases …
gonferreyra 1c5e068
chore: added Spanish translations for changelogs and fixed minor issu…
gonferreyra b02ce7c
Merge branch 'develop' of github.com:sleakops/docs into dev
fuzilogik2019 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| 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. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 indican2024-01-12(12 de enero 2024). Esta inconsistencia va a causar problemas con el ordenamiento de los changelogs.🔧 Arreglo propuesto
📝 Committable suggestion
🤖 Prompt for AI Agents