The command oc describe dc/backend
is only showing the last three deployments. Due to a troublesome rollout, the last three deployments today were the same code. Is it possible to see a longer history of deployments to make it easier to see the one we want to deploy with oc rollback backend --to-version=X
?
Asked
Active
Viewed 216 times
0

simbo1905
- 6,321
- 5
- 58
- 86
1 Answers
0
In first, you need to check your current revisionHisoryLimit from your deploymentConfig resource using oc get dc/backend -o yaml
. [0] And edit it for your needs.
[0]No circle 7[https://docs.openshift.com/container-platform/3.9/dev_guide/deployments/how_deployments_work.html#creating-a-deployment-configuration]

Daein Park
- 4,393
- 2
- 12
- 21