When I deploy Kratos with Helm it creates: kratos-...
# ory-selfhosting
w
When I deploy Kratos with Helm it creates: kratos-courier-0. I get an error:
Copy code
The configuration contains values or keys which are invalid:
The configuration contains values or keys which are invalid:
courier.smtp.connection_uri: <nil>
                             ^-- one or more required properties are missing
Are these two things related? Should I configuring connection_uri with the courier? Or is this some job that sends emails and I need to setup mailslurper, for example?
p
I've found that kratos does not start without that set. I just set it to something then don't set it up.
Copy code
# We don't use this ATM, but kratos does not start without it.
courier:
  smtp:
    connection_uri: <smtps://test:test@mailslurper:1025/?skip_ssl_verify=true>
w
Ah, brill. I dont suppose you've seen this either?
Copy code
selfservice.default_browser_return_url: <nil>
Getting this error but dont see it in helm chart values...
p
These values are in the kratos config - not in the helm values directly.
Anything in that config should be under
Copy code
kratos:
  config:
in the chart values.
🙌 1