6 ms·
I've only skimmed the quickstart docs https://kargo.akuity.io/quickstart/ https://kargo.akuity.io/quickstart/ but this snippet immediately clicks for me as some
by abuckenheimer 3y ago
I've only skimmed the quickstart docs https://kargo.akuity.io/quickstart/ https://kargo.akuity.io/quickstart/ but this snippet immediately clicks for me as something that I'd want to try
cat <<EOF | kubectl apply -f -
apiVersion: kargo.akuity.io/v1alpha1
kind: Promotion
metadata:
name: prod-to-${FREIGHT_ID}
namespace: kargo-demo
spec:
stage: prod
freight: ${FREIGHT_ID}
EOF
Have enjoyed using argo in general in the past, its got a great model for k8s native workflows / events but never got to using it for CD.
- sleepybrett 3y agoYeah we use argo workflows to power some e2e testing and rollouts for canary blue/green, and their notification server, but don't actually use their cd product.
- distortionfield 3y agoI used Argo for some e2e test suites I wrote and it was a god send. Being able to trigger off of GitHub labels was so insanely powerful for building developer tooling.