Web modeler isn't getting installed

values:

        global:
          ingress:
            enabled: true
            className: nginx
            host: "camunda.dev-artem.company.io"
          identity:
            auth:
              publicIssuerUrl: "https://camunda.dev-artem.company.io/auth/realms/camunda-platform"
              operate:
                redirectUrl: "https://camunda.dev-artem.company.io/operate"
              tasklist:
                redirectUrl: "https://camunda.dev-artem.company.io/tasklist"
              optimize:
                redirectUrl: "https://camunda.dev-artem.company.io/optimize"
              webModeler:
                redirectUrl: "https://camunda.dev-artem.company.io/modeler"
              console:
                redirectUrl: "https://camunda.dev-artem.company.io/console"

        identity:
          contextPath: "/identity"
          fullURL: "https://camunda.dev-artem.company.io/identity"

        operate:
          contextPath: "/operate"

        optimize:
          contextPath: "/optimize"

        tasklist:
          contextPath: "/tasklist"

        webModeler:
          # The context path is used for the web application that will be accessed by users in the browser.
          # In addition, a WebSocket endpoint will be exposed on "[contextPath]-ws", e.g. "/modeler-ws".
          contextPath: "/modeler"

        console:
          contextPath: "/console"

        connectors:
          contextPath: "/connectors"

        zeebeGateway:
          contextPath: "/zeebe"
          ingress:
            grpc:
              enabled: true
              className: nginx
              host: "zeebe.camunda.dev-artem.company.io"

simply no web modeler components installed, neither deploys, nor svc nothing, how to add?

WebModeler is disabled by default.
Try this one:

webModeler:
  enabled: true
...

That alone didn’t help, it also requires email, this worked for me:

webModeler:
  enabled: true
  contextPath: "/modeler"
  
  restapi:
    enabled: true
    mail:
      smtpHost: smtp.example.com
      smtpPort: 587
      smtpUser: your-smtp-user
      smtpPassword: your-smtp-password
      fromAddress: no-reply@example.com
    clusters:
      default:
        enabled: true
        name: "Production Cluster"
        authMode: "OAUTH"
        zeebeGateway:
          host: "zeebe.camunda.dev.mycompany.io"
          port: 26500
        operate:
          host: "camunda.dev.mycompany.io"
          path: "/operate"
        tasklist:
          host: "camunda.dev.mycompany.io"
          path: "/tasklist"