PromucFlow_constructor/deploy/helm/Chart.yaml

26 lines
711 B
YAML
Raw Normal View History

annotations:
category: Application
apiVersion: v2
name: appsmith
type: application
description: Appsmith is an open source framework to build admin panels, CRUD apps and workflows. Build everything you need, 10x faster.
maintainers:
- email: tech@appsmith.com
name: Appsmith
sources:
- https://github.com/appsmithorg/appsmith
home: https://www.appsmith.com/
icon: https://assets.appsmith.com/appsmith-icon.png
Revert "chore: Release v1.9.44 (#28477)" (#28669) > Pull Request Template > > Use this template to quickly create a well written pull request. Delete all quotes before creating the pull request. > ## Description Reverting coz I squash merged the promotional pr. > > Please include a summary of the changes and which issue has been fixed. Please also include relevant motivation > and context. List any dependencies that are required for this change > > Links to Notion, Figma or any other documents that might be relevant to the PR > > #### PR fixes following issue(s) Fixes # (issue number) > if no issue exists, please create an issue and ask the maintainers about this first > > #### Media > A video or a GIF is preferred. when using Loom, don’t embed because it looks like it’s a GIF. instead, just link to the video > > #### Type of change > Please delete options that are not relevant. - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (fix or feature that would cause existing functionality to not work as expected) - Chore (housekeeping or task changes that don't impact user perception) - This change requires a documentation update > > > ## Testing > #### How Has This Been Tested? > Please describe the tests that you ran to verify your changes. Also list any relevant details for your test configuration. > Delete anything that is not relevant - [ ] Manual - [ ] JUnit - [ ] Jest - [ ] Cypress > > #### Test Plan > Add Testsmith test cases links that relate to this PR > > #### Issues raised during DP testing > Link issues raised during DP testing for better visiblity and tracking (copy link from comments dropped on this PR) > > > ## Checklist: #### Dev activity - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag #### QA activity: - [ ] [Speedbreak features](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#speedbreakers-) have been covered - [ ] Test plan covers all impacted features and [areas of interest](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#areas-of-interest-) - [ ] Test plan has been peer reviewed by project stakeholders and other QA members - [ ] Manually tested functionality on DP - [ ] We had an implementation alignment call with stakeholders post QA Round 2 - [ ] Cypress test cases have been added and approved by SDET/manual QA - [ ] Added `Test Plan Approved` label after Cypress tests were reviewed - [ ] Added `Test Plan Approved` label after JUnit tests were reviewed
2023-11-06 14:51:41 +00:00
version: 2.0.6
dependencies:
- condition: redis.enabled
name: redis
fix: update chart.lock and app versions (#20105) Fixes: [20000](https://github.com/appsmithorg/appsmith/issues/20000) - [Bug]: Update appsmith version from 1.16.0 to the current 1.9.4 version * Though we deploy the latest appsmith version. In the helm chart we show that we are deploying appsmith version as 1.16.0 and its confusing . We are now fixing it with this PR - Correct helm chart versions for redis and mongo. This, helps in deploying the desired versions of redis and mongo which appsmith supports. * Previously, When we deploy appsmith along with redis and mongo . It used to deploy redis v7.0.4 and mongo v6.0.3. with this changes we deploy the supported versions of redis and mongo which is v6 and v5 respectively. ### Mongo before: ``` I have no name!@tempappsmith-mongodb-0:/$ mongosh Current Mongosh Log ID: 63d2128c2e4dabde5a68f8f8 Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.0 Using MongoDB: 6.0.3 Using Mongosh: 1.6.0 For mongosh info see: https://docs.mongodb.com/mongodb-shell/ rs0 [direct: primary] test> rs0 [direct: primary] test> db.version() 6.0.3 ``` After the proposed changes: ``` I have no name!@tempappsmith-mongodb-0:/$ mongo MongoDB shell version v5.0.9 connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb Implicit session: session { "id" : UUID("d75e90e4-cbff-4b52-a7ab-22755ab43ec1") } MongoDB server version: 5.0.9 ================ Warning: the "mongo" shell has been superseded by "mongosh", which delivers improved usability and compatibility.The "mongo" shell has been deprecated and will be removed in an upcoming release. For installation instructions, see https://docs.mongodb.com/mongodb-shell/install/ ================ rs0:PRIMARY> db.version() 5.0.9 ``` ### Redis Before ``` I have no name!@tempappsmith-redis-master-0:/$ redis-server 19:C 26 Jan 2023 05:40:42.232 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 19:C 26 Jan 2023 05:40:42.232 # Redis version=7.0.4, bits=64, commit=00000000, modified=0, pid=19, just started 19:C 26 Jan 2023 05:40:42.232 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf 19:M 26 Jan 2023 05:40:42.233 * monotonic clock: POSIX clock_gettime 19:M 26 Jan 2023 05:40:42.233 # Warning: Could not create server TCP listening socket *:6379: bind: Address already in use 19:M 26 Jan 2023 05:40:42.233 # Failed listening on port 6379 (TCP), aborting. ``` After the proposed changes ``` I have no name!@tempappsmith-redis-master-0:/$ redis-server 4728:C 26 Jan 2023 05:35:07.745 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 4728:C 26 Jan 2023 05:35:07.745 # Redis version=6.2.7, bits=64, commit=00000000, modified=0, pid=4728, just started 4728:C 26 Jan 2023 05:35:07.745 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf 4728:M 26 Jan 2023 05:35:07.746 * monotonic clock: POSIX clock_gettime 4728:M 26 Jan 2023 05:35:07.746 # Warning: Could not create server TCP listening socket *:6379: bind: Address already in use 4728:M 26 Jan 2023 05:35:07.746 # Failed listening on port 6379 (TCP), aborting. ```
2023-02-01 11:42:00 +00:00
version: 16.11.2
appVersion: 6.2.7
repository: https://charts.bitnami.com/bitnami
- condition: mongodb.enabled
name: mongodb
fix: update chart.lock and app versions (#20105) Fixes: [20000](https://github.com/appsmithorg/appsmith/issues/20000) - [Bug]: Update appsmith version from 1.16.0 to the current 1.9.4 version * Though we deploy the latest appsmith version. In the helm chart we show that we are deploying appsmith version as 1.16.0 and its confusing . We are now fixing it with this PR - Correct helm chart versions for redis and mongo. This, helps in deploying the desired versions of redis and mongo which appsmith supports. * Previously, When we deploy appsmith along with redis and mongo . It used to deploy redis v7.0.4 and mongo v6.0.3. with this changes we deploy the supported versions of redis and mongo which is v6 and v5 respectively. ### Mongo before: ``` I have no name!@tempappsmith-mongodb-0:/$ mongosh Current Mongosh Log ID: 63d2128c2e4dabde5a68f8f8 Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.0 Using MongoDB: 6.0.3 Using Mongosh: 1.6.0 For mongosh info see: https://docs.mongodb.com/mongodb-shell/ rs0 [direct: primary] test> rs0 [direct: primary] test> db.version() 6.0.3 ``` After the proposed changes: ``` I have no name!@tempappsmith-mongodb-0:/$ mongo MongoDB shell version v5.0.9 connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb Implicit session: session { "id" : UUID("d75e90e4-cbff-4b52-a7ab-22755ab43ec1") } MongoDB server version: 5.0.9 ================ Warning: the "mongo" shell has been superseded by "mongosh", which delivers improved usability and compatibility.The "mongo" shell has been deprecated and will be removed in an upcoming release. For installation instructions, see https://docs.mongodb.com/mongodb-shell/install/ ================ rs0:PRIMARY> db.version() 5.0.9 ``` ### Redis Before ``` I have no name!@tempappsmith-redis-master-0:/$ redis-server 19:C 26 Jan 2023 05:40:42.232 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 19:C 26 Jan 2023 05:40:42.232 # Redis version=7.0.4, bits=64, commit=00000000, modified=0, pid=19, just started 19:C 26 Jan 2023 05:40:42.232 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf 19:M 26 Jan 2023 05:40:42.233 * monotonic clock: POSIX clock_gettime 19:M 26 Jan 2023 05:40:42.233 # Warning: Could not create server TCP listening socket *:6379: bind: Address already in use 19:M 26 Jan 2023 05:40:42.233 # Failed listening on port 6379 (TCP), aborting. ``` After the proposed changes ``` I have no name!@tempappsmith-redis-master-0:/$ redis-server 4728:C 26 Jan 2023 05:35:07.745 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 4728:C 26 Jan 2023 05:35:07.745 # Redis version=6.2.7, bits=64, commit=00000000, modified=0, pid=4728, just started 4728:C 26 Jan 2023 05:35:07.745 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf 4728:M 26 Jan 2023 05:35:07.746 * monotonic clock: POSIX clock_gettime 4728:M 26 Jan 2023 05:35:07.746 # Warning: Could not create server TCP listening socket *:6379: bind: Address already in use 4728:M 26 Jan 2023 05:35:07.746 # Failed listening on port 6379 (TCP), aborting. ```
2023-02-01 11:42:00 +00:00
version: 12.1.16
appVersion: 5.0.9
repository: https://charts.bitnami.com/bitnami