## Blue/Green deploy The Knative `service` resource creates additional resources "route, configuration and revision" to manage the lifecycle of the application. - revision: just like a git revision, any change to the Service's `spec.template` results in a new revision - route: control traffic to several revisions You can list those resources by running ```kubectl get ksvc,configuration,route,revision```{{execute T1}} or by using the `kn` cli We will now update the service to change the `TARGET` env variable to `green`. Note that the name of the service is the same, we have updated the value of the environment variable and `.spec.template.metadata.name` ``` cat <