Skip to content

For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.

Page as Markdown

Linux installation

Install ingress2gateway on Linux

  1. Set your environment variables.

    VERSION=v0.4.0
    OS=Linux
    # One of arm64|x86_64|i386
    ARCH=arm64

    Refer to the releases page for a list of published ingress2gateway versions.

  2. Download the release.

    curl -LO "https://github.com/kgateway-dev/ingress2gateway/releases/download/${VERSION}/ingress2gateway_${OS}_${ARCH}.tar.gz"
  3. Optional: Validate the release tarball.

    Download the ingress2gateway checksum file.

    curl -LO https://github.com/kgateway-dev/ingress2gateway/releases/download/${VERSION}/checksums.txt

    Validate the binary against the checksum file.

    grep -F "  ingress2gateway_${OS}_${ARCH}.tar.gz" checksums.txt | shasum -a 256 --check

    If valid, the output is:

    ingress2gateway_$OS_$ARCH.tar.gz: OK
  4. Extract the tarball.

    tar -xvf ingress2gateway_${OS}_${ARCH}.tar.gz
  5. Install ingress2gateway.

    sudo install -o root -g root -m 0755 ingress2gateway /usr/local/bin/ingress2gateway

    Note: If you do not have root access on the target system, you can still install ingress2gateway to the ~/.local/bin directory:

    chmod +x ingress2gateway
    mkdir -p ~/.local/bin
    mv ./ingress2gateway ~/.local/bin/ingress2gateway
    # and then append (or prepend) ~/.local/bin to $PATH
  6. Test the installation by checking the version of the binary.

    ingress2gateway version

    Note: Make sure /usr/local/bin is in your PATH environment variable.

Was this page helpful?
Agentgateway assistant

Ask me anything about agentgateway configuration, features, or usage.

Note: AI-generated content might contain errors; please verify and test all returned information.

Tip: one topic per conversation gives the best results. Use the + button in the chat header to start a new conversation.

Switching topics? Starting a new conversation improves accuracy.
↑↓ navigate select esc dismiss

What could be improved?

Your feedback helps us improve assistant answers and identify docs gaps we should fix.

Need more help? Join us on Discord: https://discord.gg/y9efgEmppm

Want to use your own agent? Add the Solo MCP server to query our docs directly. Get started here: https://search.solo.io/.