Conneting dataiku to VS Code using Dataiku DSS extension

Options
raghutej
raghutej Registered Posts: 10

Hello,
I am trying to use VS Code editor for editing python recipe code.

I followed instructions mentioned below and create config.json file with url & api key, but i am not able to see any projects.

  • Through configuration file. Create or edit the file ~/.dataiku/config.json (or %USERPROFILE%/.dataiku/config.json on Windows), and add the following content:

{
  "dss_instances": {
    "default": {
      "url": "http(s)://DSS_HOST:DSS_PORT/",
      "api_key": "Your API key secret"
    }
  },
  "default_instance": "default"
}

When i refresh projects in VS code i get an error - "Dataiku DSS: unable to verify the first certificate"
Could you please guide me with steps to resolve this?

Best Answer

  • Ioannis
    Ioannis Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 28 ✭✭✭✭✭
    edited July 17 Answer ✓
    Options

    Try this:

    {
      "dss_instances": {
        "default": {
          "url": "http(s)://DSS_HOST:DSS_PORT/",
          "api_key": "Your API key secret",
          "no_check_certificate": true
        }
      },
      "default_instance": "default"
    }

Answers

Setup Info
    Tags
      Help me…