Continuous Deployment
Requirements for Continuous Deployment
-Confidence in Continuous Delivery pipeline
-Automated smoke test and sophisticated monitoring of production environment
-Roll-back automation, or the decision to fix forward
-business buy-in
Reasons not to do Continuous Deployment
-Regulatory environment
-Enterprise compliance
-Business requorements
Feature Toggles - shiping changes to production but enabling it only on test env
if enable_new_feature == True:
logic_for_new_feature()
else:
logic_for_old_feature()
-Confidence in Continuous Delivery pipeline
-Automated smoke test and sophisticated monitoring of production environment
-Roll-back automation, or the decision to fix forward
-business buy-in
Reasons not to do Continuous Deployment
-Regulatory environment
-Enterprise compliance
-Business requorements
Feature Toggles - shiping changes to production but enabling it only on test env
if enable_new_feature == True:
logic_for_new_feature()
else:
logic_for_old_feature()
Komentarze
Prześlij komentarz