Jeremiah
01/11/2023, 5:21 PMKyle McChesney
01/11/2023, 6:07 PMDmytro Ponomarchuk
01/12/2023, 1:17 PMKarim Amrani
01/13/2023, 7:56 AMTim-Oliver
01/13/2023, 9:51 AMTask run 'f4eca18a-0509-46e9-b3ea-832074006308' received abort during orchestration: This run cannot transition to the RUNNING state from the RUNNING state. Task run is in RUNNING state.
?Emma Rizzi
01/26/2023, 9:36 AMDmytro Ponomarchuk
01/26/2023, 12:39 PMDmytro Ponomarchuk
01/26/2023, 12:43 PMSlackbot
02/01/2023, 12:29 PMLuca Vehbiu
02/01/2023, 12:32 PMEmil Sorensen
02/01/2023, 9:08 PMNate
02/02/2023, 12:55 AMDmytro Ponomarchuk
02/09/2023, 8:08 AMBigya Man Pradhan
02/09/2023, 9:38 AMDmytro Ponomarchuk
02/09/2023, 11:45 AMDmytro Ponomarchuk
02/09/2023, 11:45 AMAnna Geller
02/09/2023, 12:11 PMAlireza
02/14/2023, 2:04 PMAlireza
02/14/2023, 8:07 PMMrityunjoy Das
02/16/2023, 7:14 AMSlackbot
02/16/2023, 12:49 PMJen Evenson
02/16/2023, 9:50 PMprefect.context.flow_name
in Prefect 2?Tameem Syed
02/18/2023, 7:40 AMTameem Syed
02/18/2023, 2:11 PMTameem Syed
02/18/2023, 2:16 PMSlackbot
02/18/2023, 7:15 PMTameem Syed
02/19/2023, 2:31 PMBigya Man Pradhan
02/21/2023, 9:07 AMJoshua Grant
02/21/2023, 9:54 PMJen Evenson
02/23/2023, 10:27 PMJen Evenson
02/23/2023, 10:27 PMStĂŠphan Taljaard
02/24/2023, 4:09 PMJen Evenson
02/24/2023, 4:20 PMStĂŠphan Taljaard
02/24/2023, 4:20 PMJen Evenson
02/24/2023, 4:22 PMNate
02/24/2023, 4:32 PMfrom prefect.blocks.system import Secret
my_new_secret = Secret(value=âsecretâ)
my_new_secret.save(âmy-new-secretâ)
#so now you have a secret block saved on your workspace
assert Secret.load(âmy-new-secretâ).get() == âsecretâ
Is there a new jira integration for Prefect2?what functionality would you like to see from a jira collection? we can work on adding a jira collection at some point
Jen Evenson
02/24/2023, 4:45 PM"secret"
to stuff into this bit: my_new_secret = Secret(value="secret")
For Prefect 1, we were retrieving all the tokens we need from Vault when building the Prefect Docker image and setting env variables/writing to a config.toml file (I forget which we did as I didn't work on that piece) in that image - which gets deployed to our own self-hosted Prefect Cloud in k8s. The jira task then just grabbed the token it needed using the old Secret class. This also allowed each developer to set the tokens needed locally and test locally rather than having to build a new image and push to our Prefect Cloud every 5 minutes.
I guess now each task that needs something from Vault will have to get it itself. We wanted to be lazy and keep getting tokens out of Vault the same way. đ