Versions Compared

Key

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

...

Code Block
languagebash
titleCommand to Instantiate a Profile
curl -X GET http://localhost:9015/v1/instance/ZKMTSaxv

LIST all Instantiated Kubernetes resources

The following API can be used to GET all the instances we have created.

Code Block
languagebash
titleCommand to Instantiate a Profile
curl -X GET http://localhost:9015/v1/instance

Configuration API

Day 2 Configurations for applications are applied using K8S kinds (typically CRDs) implemented by application specific operators.  For a given application, type of configuration is similar (but not the values), therefore configuration templates are created by applications.  These templates are for each application and are expected to be created even before Day 2 configuration is applied. Once the templates are created, configuration can be applied by choosing the right template. Day 2 configuration is applied by users as and when new configuration is required. As a user, he/she should select the template and supply values to apply new configuration. 

...