Secrets manager: create secure value using the active keeper (#114039)
* Secrets manager: create secure value using the active keeper * SecureValueService.Update: fetch secure value from db to get the keeper * fix keeper_store_test.go * SecureValueService: fix bug in update where the current version keeper wasn't being passed to the createNewVersion method * make gofmt * remove outdated test * update TestModel * undo enterprise_imports changes * use xkube.Namespace * migrator: set secret_secure_value.keeper to 'system' when the column is null * indent cue * fix tests * fix enterprise imports * properly fix enterprise imports * make update-workspace * go mod tidy --------- Co-authored-by: Matheus Macabu <macabu.matheus@gmail.com>
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
SELECT
|
||||
`guid`,
|
||||
`name`,
|
||||
`namespace`,
|
||||
`annotations`,
|
||||
`labels`,
|
||||
`created`,
|
||||
`created_by`,
|
||||
`updated`,
|
||||
`updated_by`,
|
||||
`description`,
|
||||
`type`,
|
||||
`payload`
|
||||
FROM
|
||||
`secret_keeper`
|
||||
WHERE
|
||||
`namespace` = 'ns' AND
|
||||
`active` = true
|
||||
LIMIT 1
|
||||
;
|
||||
Reference in New Issue
Block a user