You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* migration number changes (#5692)
* refrain from checkin autoscalingCheckBeforeTrigger for virt clus (#5696)
* fix: Decode secret fix on add update oss (#5695)
* ValidateEncodedDataByDecoding in case add or update secret
* wire fix from main
* minor refactor
* comment
* saving pco concurrency case handled (#5688)
* fix: script for pipelineStageStepVariable, making input value and default_value text from varchar255 (#5701)
* script for pipelineStageStepVariable, making input value and default_value text from varchar255
* erro log fix
* fix: ea fixes for helm app (#5708)
* added the ea apps entry app table
* resolved the ea mode multiple rows error during configuration of app
* modified the ea dockerfile in ca-certificates cmd
* uncommented the code and left the ea helm app making way untouched
* remodified the dockerfile as previous state
* modified the docker file ea mode
* dockerfile exit code 100 due to ap install alternative in ea mode dockerfile
* execute make after main merge
* modified changes in dockerfile ea mode
* resolved comments after first level review
* Revert "fix: ea fixes for helm app (#5708)" (#5713)
This reverts commit 3e31f49.
* fix: SkipCiBuildCachePushPull code incorporated with minor refac in handle runtime params validation (#5712)
* SkipCiBuildCachePushPull code incorporated with minor refac in handle runtime params validation
* minor refactor
* minor refactor
* chore: polling plugin refactored
* chore: refactored method name
* update polling plugin response struct
* updated migration number
* updated polling plugin image
* updated polling plugin migration script
* fix: same digest for different image issue
* fix: plugin migration handling
* updated polling plugin migration script
* updated migration number
* fix: empty artifact issue
* chore: polling plugin migration prod-image updated
* updated common-lib version
---------
Co-authored-by: Prakash <[email protected]>
Co-authored-by: Rajeev Ranjan <[email protected]>
SELECT nextval('id_seq_plugin_parent_metadata'), 'Pull images from container repository','pull-images-from-container-repository','Polls a container repository and pulls images stored in the repository which can be used for deployment.','PRESET','https://raw.githubusercontent.com/devtron-labs/devtron/main/assets/plugin-poll-container-registry.png','f', 'now()', 1, 'now()', 1
10
+
WHERE NOT EXISTS (
11
+
SELECT1
12
+
FROM plugin_parent_metadata
13
+
WHERE identifier='pull-images-from-container-repository'
14
+
AND deleted = false
15
+
);
16
+
17
+
-- update the plugin_metadata with the plugin_parent_metadata_id
18
+
UPDATE plugin_metadata
19
+
SET plugin_parent_metadata_id = (
20
+
SELECT id
21
+
FROM plugin_parent_metadata
22
+
WHERE identifier='pull-images-from-container-repository'
23
+
AND deleted = false
24
+
)
25
+
WHERE name='Pull images from container repository'
0 commit comments