Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 748 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 748 Bytes

PHP language server

This folder contains the deployment files for the PHP language server.

You can enable it by:

  1. Append the kubectl apply command for the PHP language server deployment to kubectl-apply-all.sh.

    echo kubectl apply --prune -l deploy=xlang-php -f configure/xlang/php/ --recursive >> kubectl-apply-all.sh
  2. Adding the following environment variables to the lsp-proxy deployment to make it aware of the PHP language server's existence:

    # base/lsp-proxy/lsp-proxy.Deployment.yaml
    env:
      - name: LANGSERVER_PHP
        value: tcp://xlang-php:2088
  3. Apply your changes to lsp-proxy and the PHP language server to the cluster.

    ./kubectl-apply-all.sh