Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Development Setup for mini provisioning

Udayan Yaragattikar edited this page Mar 30, 2021 · 1 revision

For Developement Setup:

  • Add following json snippet to csm configuration template.
"DEPLOYMENT": {
    "mode": "dev"
  },
  • Replace TMPL_CSM_SECRET_KEY with same as that of TMPL_CSM_USER_KEY.
  • Replace TMPL_SGIAM_SECRET_KEY with same as that of TMPL_SGIAM_USER_KEY.
  • Your sample template will look like:
"DEPLOYMENT": {
    "mode": "dev"
  },
  "cortx": {
    "software": {
      "csm": {
        "user": "csm",
        "secret": "csm"
      },
      "openldap": {
        "sgiam": {
          "user": "sgiamadmin",
          "secret": "ldapadmin"
        }
      }
    }
  },