Hi @SEAN MCGURK ,
From the describe deplyment output, we can see that the deployemnt does recognize the older replicaset as one of its own:
Conditions:
Type Status Reason
---- ------ ------
Progressing True NewReplicaSetAvailable
Available True MinimumReplicasAvailable
OldReplicaSets: <none>
NewReplicaSet: sso-svc-deployment-74b8cb4ffb (2/2 replicas created)
Events: <none>
The same thing is seen when checking the annotations: deployment.kubernetes.io/revision: 1
This indicates that the deployment is only on its 1st revision, and didnt get any updates.
It looks like the older replicaset belongs to an older deployment with the same name.
To resolve the issue, delete the older replicaset sso-svc-deployment-6d548674b8.
After that, try to redeploy the helm chart to see if the same issue occurs again, if it does, you would need to troubleshoot why this behavior is happening.