For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
Windows Installation
Install the ingress2gateway CLI on Windows.
Install ingress2gateway on Windows
-
Set your environment variables.
VERSION=v0.5.0 OS=Windows # One of arm64|x86_64|i386 ARCH=arm64Refer to the releases page for a list of published ingress2gateway versions.
-
Download the release.
curl -LO "https://github.com/kgateway-dev/ingress2gateway/releases/download/${VERSION}/ingress2gateway_${OS}_${ARCH}.zip" -
Optional: Validate the release tarball.
Download the ingress2gateway checksum file.
curl -LO https://github.com/kgateway-dev/ingress2gateway/releases/download/${VERSION}/checksums.txtValidate the binary against the checksum file.
Using Command Prompt, manually compare CertUtil’s output to the downloaded checksum file.
CertUtil -hashfile ingress2gateway_${OS}_${ARCH}.zip SHA256If valid, the output is:
ingress2gateway_$OS_$ARCH.zip: OK -
Extract the tarball.
tar -xvf ingress2gateway_${OS}_${ARCH}.zip -
Append or prepend the binary to your PATH environment variable.
-
Test the installation by checking the version of the binary.
ingress2gateway version
Was this page helpful?