srikanth
srikanth

Reputation: 121

Kubernetes Continuous Deployment

I know continuous deployment can be done via spinnaker like Blue/Green, Canary Deployment etc but my question how does it differ from other GitOps tools like WeaveWorks Flux ? Does both solve the same problem ? or Do we need both tools in conjunction ?

Upvotes: 0

Views: 280

Answers (1)

VonC
VonC

Reputation: 1324278

As mentioned in "The GitOps Pipeline - Part 2"

Weave Flux is a tool that automates the staging and release of containers to Kubernetes, as well as services, deployments, network policies and even Istio routing rules. Flux is therefore ‘glue’ that maps all the relationships between code, services and running clusters.

It can be seen as a leaner, Kubernetes-native alternative to Spinnaker.

Upvotes: 1

Related Questions