#Hello I'm AbdulLateef, I'm the DevOps

1 messages · Page 1 of 1 (latest)

summer zephyr
#

Hi, welcome!

What kind of tools are you already using for CD and where are you deploying to?

lilac umbra
#

Thanks Lev, I'm used to github actions.

#

And mostly deploy to AWS, GCP and DO

#

DigitalOcean

summer zephyr
#

Dagger works with any of your existing tools, you could think of it as a wrapper around thing like argo or terraform or whatever you might be using to do CD.

Here's an example combining Argo Workflows with Dagger Functions for deploying to Kubernetes cluster

https://www.youtube.com/watch?v=FWOJO2PAQIo&feature=youtu.be

Argo Workflows, combined with Dagger Functions, offers a powerful and efficient way to define and execute CI/CD pipelines within Kubernetes clusters.

In this demo, Kyle covers the integration of Argo Workflows with Dagger Functions, providing a detailed walkthrough on setting up and running CI/CD pipelines within a Kubernetes cluster.

▶ Play video
lilac umbra
#

Let me check this, thanks

lilac umbra
#

Hi Lev, can you help explain the difference between the image and container parameters expected in the function from dagger-gcp:

@func()
async example(pushCtr: Container, account: string, region: string, project: string, repo: string, image: string, gcpCredentials: File): Promise<string> {
return dag
.gcp()
.garPush(pushCtr, account, region, project, repo, image, gcpCredentials)
}

summer zephyr
#

Sure thing, can you share where you got this code snippet?

lilac umbra
#

Actually, I got it from the dagger-gcp daggerverse module page