On this page
Delete LDAP Vendor for SecureChange
To delete the vendor, run the following commands:
kubectl exec -it deploy/sc-server -c sc-server -- bash -c "psql securechangeworkflow -Usecurechange -c 'delete from ldap_attr where vendor='<vendor_name>';'"
kubectl delete pod -l app=sc-server
Sample code
Running the following commands deletes the Oracle vendor:
kubectl exec -it deploy/sc-server -c sc-server -- bash -c "psql securechangeworkflow -Usecurechange -c 'delete from ldap_attr where vendor='Oracle';'"
kubectl delete pod -l app=sc-server