Kubernetes Continuous Deployment

6/18/2018

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 ?

-- srikanth
kubernetes
spinnaker

1 Answer

6/19/2018

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.

-- VonC
Source: StackOverflow