Argo Rollouts is a Kubernetes controller that facilitates advanced deployment strategies like blue/green deployments and canaries in a Kubernetes cluster, and is integrated with platforms like Codefresh for enhanced user interface support. While it natively manages container image updates through a Rollout resource, challenges arise when configuration changes, stored in configmaps, accompany application updates, as these are not inherently part of a Rollout. To address this, Kustomize's configmap generators can be leveraged to create and manage version-specific configmaps dynamically, allowing for seamless configuration updates without altering the container image. This approach enables progressive delivery for both application code and configurations, ensuring each deployment version operates with its respective settings. Additionally, the technique supports deployments driven solely by configuration changes, offering flexibility in fine-tuning application settings in production environments. Future discussions will explore more complex scenarios involving multiservice deployments and Codefresh's orchestration capabilities.