Dagger at Ubisoft
22:38
21 сағат бұрын
Running Dagger in an Enterprise
24:10
14 күн бұрын
Getting Started With Dagger and Harness
13:13
Public Traces on Dagger Cloud
4:39
21 күн бұрын
Daggerizing GoReleaser
24:16
21 күн бұрын
Dagger 2024: A Shared Vision
2:48
Dagger Commanders
0:46
Ай бұрын
New Experimental Dagger PHP SDK
10:18
Kubernetes in Dagger
14:14
4 ай бұрын
Dagger Beyond CI/CD
29:57
4 ай бұрын
Introduction to Dagger
19:17
4 ай бұрын
Dagger In Practice
15:17
4 ай бұрын
Пікірлер
@yedidyarashi
@yedidyarashi 2 күн бұрын
Can you share the code please?
@berndeckenfels
@berndeckenfels 3 күн бұрын
Does that work and link to Java-SDK source as well?
@srivatsarv4137
@srivatsarv4137 7 күн бұрын
This was super helpful! Thank you so much.
@nickr753
@nickr753 18 күн бұрын
Neat! So far I haven't found GHA yaml using the dagger-for-github action to be overly complicated to warrant the extra code generation (at least for my minimal use case), but I am curious if the niceties shown here like the summary markdown and engine prewarming in a separate step can be integrated into the dagger-for-github action.
@rromic89
@rromic89 Ай бұрын
maybe add option to like module on daggerverse site? so that way you can also sort by number of likes
@Moronicsmurf
@Moronicsmurf Ай бұрын
This seems like a terrible idea. CI/CD should be declarative. And it should be declarative for a reason.. Programmers cannot get "creative" and f**k shit up. Every time i see the imperative approach on CI/CD i tend to go "oh how junior are these kids then"... You really need to sit down a build for real "large" systems and then come back again and allowed to have a voice..
@chris_cann
@chris_cann Ай бұрын
Currently you must glue yaml and scripts together. Seems easier to have it all in one language
@Moronicsmurf
@Moronicsmurf Ай бұрын
@@chris_cann why would you glue other languages together with it? If you try to loop and make stuff dynamic in a pipeline you are doing it wrong and really setting your self up to chase rabbits down the black hole of insufferable errors.. We redploy about 11-18000 servers every 24 hours.. If one line of imperative code is found in that i will personally string that mf up outside as warning example..
@SathyaManikanta
@SathyaManikanta Ай бұрын
If Solomon Hykes speaks...then we don't have to watch another video for the explanation 😊
@cupajoesir
@cupajoesir Ай бұрын
this is amazing! I'd love to see a deep dive into customizing things. I'll stay tuned. thanks!
@felipeaprotazio
@felipeaprotazio 2 ай бұрын
I believe this is useful. I daggerized my project and I thought there was a way to go all-in with Dagger and not have to write that yml file to invoke dagger. It would be awesome to write even the GitHub Actions' workflows in code.
@FamilyDave-w3w
@FamilyDave-w3w 3 ай бұрын
Link to Slide Deck?
@jaychitalia7721
@jaychitalia7721 3 ай бұрын
If I tell my boss that Im gonna keep the token alive for 15 mins after the workflow is done running, he will laugh on my face. Why would you not just use secrets and pass the creds that way? Its secure and simple and doesn’t require creating this OIDC mess. After working on Github Actions for the last 2 years, I can confidently say that its a very underwhelming and undercooked solution in its current state. It really needs some major breaking changes or some competition will take over with a better solution.
@aeggeska1
@aeggeska1 3 ай бұрын
This accent is difficult to listen to.
@mrgdevops
@mrgdevops 3 ай бұрын
use auto-generated cc
@alexx855
@alexx855 4 ай бұрын
@ravirajasekharuni
@ravirajasekharuni 4 ай бұрын
Can the RAG consume structured and unsturured data . How is the embedding of structured data done. I read embeddings use wither KNN or ANN type of circles.
@ravirajasekharuni
@ravirajasekharuni 4 ай бұрын
Dagger is pretty cool
@chrisre2751
@chrisre2751 4 ай бұрын
Is it posible to interact and give some inpute to the pipeline on the run? For example I execute a terraform validate ,then pipeline should pause and I manualy check the tf changes. If everything is fine I like to resume the build and execute a terraform apply
@levlaz88
@levlaz88 4 ай бұрын
There is no first-class way to pause a Dagger pipeline this way (yet!), but this is where it starts to play really nicely with Jenkins stages. For example you could use the input step to pause and wait for input www.jenkins.io/doc/pipeline/steps/pipeline-input-step/
@chrisre2751
@chrisre2751 4 ай бұрын
Thank you. Very interesting. I would like to see how can I pass parameters from a result of a previous stage to another. Maybe in one stage I would like to grep informations from a Jira ticket and in the next stage I like tobwork with them.
@levlaz88
@levlaz88 4 ай бұрын
Great question! There are a few ways to approach this. If you are taking the approach where you use Dagger to programatically express your pipeline, then this becomes simple because you have a variable hold the value of the JIRA API response that you pass along into another function that knows what to do with that value. If you want to split this up by Jenkins stage, it becomes a bit trickier but still possible through file artifacts for example. Please join us in Discord if you have any follow up questions, we've got a great community of folks that are exploring Dagger for various use cases and would love to see you there. discord.com/invite/dagger-io
@acola777
@acola777 4 ай бұрын
Good job, do you also have a repo about the project that you can share?
@WagnerSilveira-n7i
@WagnerSilveira-n7i 4 ай бұрын
How to use DinD along with testing containers using dagger?
@PatrickMageez
@PatrickMageez 4 ай бұрын
This was an awesome update guys. Love the bit with the black text on the last slides, someone had fun trolling Solomon! 🤣
@mortensams7467
@mortensams7467 6 ай бұрын
Awesome - will you share the example code?
@jk4508
@jk4508 6 ай бұрын
how do I do something like a RUN apt-get update && apt-get install -y git this doesnt seem to work: .with_exec(["apt-get", "update", "&&", "apt-get", "install", "-y", "git"]) e.g. this is important to keep images slim
@arwema
@arwema 7 ай бұрын
is it possible to update one deployment from a YAML file with multiple deployments?
@Xefreh
@Xefreh 7 ай бұрын
great video, looking for updates on the java sdk, thank you for this demo.
@manipal2011
@manipal2011 8 ай бұрын
watch from 7:25 to see new Capability by Ollama
@gokoyeb
@gokoyeb 8 ай бұрын
Great replay of the night! ❤🚀
@mohamedchorfa
@mohamedchorfa 8 ай бұрын
WOW Dynamic Dagger Compose with AI 🤯
@serenajonatan6629
@serenajonatan6629 8 ай бұрын
*Promosm*
@blaiseutube
@blaiseutube 8 ай бұрын
To the Dagger Noobs: This tutorial is helpful when you want to put together some Python code so that it can be available to other languages, using the "modules" approach.
@wag6181
@wag6181 9 ай бұрын
Previous version in Nodejs was far better then the current version
@crystalcollins9117
@crystalcollins9117 9 ай бұрын
You explain this so well. 🤩
@blaiseutube
@blaiseutube 11 ай бұрын
It might help to make the font size larger.
@pm1234
@pm1234 11 ай бұрын
Adding a logo to mugs and t-shirts is very easy using Photoshop.
@colombogk
@colombogk Жыл бұрын
Is it possible to improve a bit the quality of the uploaded videos? Not sure if just me but I can barely read anything in the shared screen :(
@scottamolinari
@scottamolinari Жыл бұрын
I went to find the blog post but couldn't.
@Freelancingzahid
@Freelancingzahid Жыл бұрын
Hello,Dear I hope you are well. I saw your KZbin channel'Dagger Analytics". Your channel subscriber 684 and video 66. Your channel and video content are very good. Also, the thumbnail design is very attractive. But here are some problems: 1. SEO score is very low 2. No title - description - tags are SEO friendly 3. Not sharing on social media platforms and your KZbin channel is a lot of trouble. As a result views, likes and subscribers are not increasing. Benefits of 100% SEO Score: 1/ Views will increase 2/ Likes will increase 3/ Customers will increase 4/ Viewing time will increase 5/ Business will increase 6/ Audience will increase. 7/ Sales will increase. So, if you want your channel to increase subscribers, views, likes and comments with proper video SEO, Google ads and monetization. It will be your right decision. Do you want to increase your SEO score? I am waiting for your response.
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice ❤
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice ❤❤❤
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice ❤
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice
@ShapanFreelancer-zs3xs
@ShapanFreelancer-zs3xs Жыл бұрын
Nice