Kubernetes - Helm Package Manager
Given the following commands executed in order:
helm install myapp ./chart helm upgrade myapp ./chart --set image.tag=v2 helm rollback myapp 1 helm status myappWhat will be the image tag shown in the status output after the rollback?
