spinnaker
What’s the difference between Red/Black deployment and Blue/Green Deployment?
Blue-green deployment Classic deployment technique described in the Continuous Delivery book by Jez Humble and David Farley: The idea is to have two identical versions of your production environment, which we’ll call blue and green… Users of the system are routed to the green environment, which is the currently designated production. We want to release … Read more
Jenkins: 403 No valid crumb was included in the request
Finally, this post helped me to do away with the crumb problem, but still securing Jenkins from a CSRF attack. Solution for no-valid crumb included in the request issue Basically, we need to first request for a crumb with authentication and then issue a POST API calls with a crumb as a header along with … Read more