I have consul entries in my kubernetes cluster. I need to perform CRUD operations. These are the commands I know, but I need to Get all and Delete and this has to be done with HTTP requests and not with consul cli.
GET - curl -k -X GET /?token=
GET ALL -
CREATE/PUT - curl -k --request PUT --data '' /?token=
DELETE -
can someone please help me to find those two empty commands?