hi all, I am trying to create a config file using ...
# general
s
hi all, I am trying to create a config file using configmap with the following configuration, my IDE is unable to recognize the pipe | symbol. is there a way to escape it?
Copy code
{
"data":
  "test.json": |
    {
        "maxThreadCount": 10,
        "trackerConfigs": [{
                "url": "<https://example1.com/>",
                "username": "username",
                "password": "password",
                "defaultLimit": 1
            }
    }
}
l
Isn't the pipe symbol used only in YAML? This is JSON...
🆗 1