sysadmin_2015_2
Aug 05, 2015Nimbostratus
iRule help - Routing traffic
Hello,
Is it possible once I implement the below iRule(25% percent of production web traffic being routed to staging_web pool) on our production web virtual server to then route all traffic from the staging_web pool to our staging_app pool of servers via the production app virtual server? The dev team does not want to change DNS entries once we do a deploy to staging then production.
when HTTP_REQUEST { if { rand() > 0.25 } { pool default-pool } else { staging_web } }
Thank you,