Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleProfile JSON Body
{
   "rb-name":"kafka",
   "rb-version":"kafka-config-1",
   "profile-name":"1234567890",
   "template-name": "kafka-token"
   "config-name": "kafka_token_1"
   "config-version":"3"
   }
}

Command to 

...

TAG  configuration Values 

Rollbacks This will add the tag name to the current config version

Code Block
languagebash
curl -i  -d @values.json -X POST http://localhost:8081/v1/rb/definition/{name}/{version}/profile/{name}/rollbacktagit

With the following JSON content (values.json )

Code Block
languagejs
titleProfile JSON Body
{
  "configtag-versionname": "5my-tag"
}


Command to 

...

ROLLBACK   configuration Values 

This will add the tag name to the current config versionRollbacks configuration to a config version or a tag. 

Code Block
languagebash
curl -i  -d @values.json -X POST http://localhost:8081/v1/rb/definition/{name}/{version}/profile/{name}/tagitrollback

With the following JSON content (values.json )

Code Block
languagejs
titleProfile JSON Body
{
  "tag-name": "my-tag""anyOf": [
    {
      "config-version": "<value>"
    },
    {
      "config-tag": "<tag name>"
    }
  ]
}