Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes most references to getenvoy #16868

Merged
merged 1 commit into from
Jun 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 5 additions & 54 deletions docs/root/start/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ Installing Envoy

The Envoy project :ref:`provides a number of pre-built Docker images <install_binaries>` for both ``amd64`` and ``arm64`` architectures.

The `Get Envoy <https://www.getenvoy.io/>`__ project also maintains a number of binaries
and repositories to accommodate many popular distributions.

If you are :ref:`installing on Mac OSX <start_install_macosx>`, you can install natively with ``brew``.

Once you have installed Envoy, check out the :ref:`quick start <start_quick_start>` guide for more information on
Expand All @@ -17,7 +14,7 @@ Install Envoy on Debian GNU/Linux
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You can `install Envoy on Debian <https://www.getenvoy.io/install/envoy/debian/>`_
using `Get Envoy <https://www.getenvoy.io/>`__.
using `Get Envoy <https://www.getenvoy.io/>`__ until `official packages exist <https://github.com/envoyproxy/envoy/issues/16867>`_.

.. code-block:: console

Expand All @@ -30,16 +27,11 @@ using `Get Envoy <https://www.getenvoy.io/>`__.
$ sudo apt update
$ sudo apt install getenvoy-envoy

.. tip::

To add the nightly repository instead, replace the word ``stable`` with ``nightly``,
when adding the ``apt`` repository.

Install Envoy on Ubuntu Linux
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You can `install Envoy on Ubuntu <https://www.getenvoy.io/install/envoy/ubuntu/>`_
using `Get Envoy <https://www.getenvoy.io/>`__.
using `Get Envoy <https://www.getenvoy.io/>`__ until `official packages exist <https://github.com/envoyproxy/envoy/issues/16867>`_.

.. code-block:: console

Expand All @@ -52,39 +44,24 @@ using `Get Envoy <https://www.getenvoy.io/>`__.
$ sudo apt update
$ sudo apt install -y getenvoy-envoy

.. tip::

To add the nightly repository instead, replace the word ``stable`` with ``nightly``,
when adding the ``apt`` repository.

Install Envoy on RPM-based distros
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You can `install Envoy on Centos/Redhat Enterprise Linux (RHEL) <https://www.getenvoy.io/install/envoy/rpm/>`_
using `Get Envoy <https://www.getenvoy.io/>`__.
using `Get Envoy <https://www.getenvoy.io/>`__ until `official packages exist <https://github.com/envoyproxy/envoy/issues/16867>`_.

.. code-block:: console

$ sudo yum install yum-utils
$ sudo yum-config-manager --add-repo https://getenvoy.io/linux/rpm/tetrate-getenvoy.repo
$ sudo yum install getenvoy-envoy

.. tip::

You can enable/disable ``nightly`` using ``yum-config-manager``:

.. code-block:: console

$ sudo yum-config-manager --enable tetrate-getenvoy-nightly
$ sudo yum-config-manager --disable tetrate-getenvoy-nightly

.. _start_install_macosx:

Install Envoy on Mac OSX
~~~~~~~~~~~~~~~~~~~~~~~~

You can install Envoy on Mac OSX using the official brew repositories, or from
`Get Envoy <https://www.getenvoy.io/install/envoy/macos>`__.
You can install Envoy on Mac OSX using the official brew repositories.

.. tabs::

Expand All @@ -93,19 +70,6 @@ You can install Envoy on Mac OSX using the official brew repositories, or from
$ brew update
$ brew install envoy

.. tab:: Get Envoy

.. code-block:: console

$ brew tap tetratelabs/getenvoy
$ brew install envoy

.. tip::

You can install the ``nightly`` version from
`Get Envoy <https://www.getenvoy.io/>`__ by adding the ``--HEAD`` flag to
the install command.

.. _start_install_windows:

Install Envoy on Windows
Expand All @@ -123,8 +87,7 @@ You can run Envoy using the official Windows Docker image.
Install Envoy using Docker
~~~~~~~~~~~~~~~~~~~~~~~~~~

You can run Envoy using the official Docker images, or by
using images provided by `Get Envoy <https://www.getenvoy.io/install/envoy/docker/>`__.
You can run Envoy using the official Docker images.

The following commands will pull and show the Envoy version of current images.

Expand All @@ -144,18 +107,6 @@ The following commands will pull and show the Envoy version of current images.
$ docker pull envoyproxy/|envoy_distroless_docker_image|
$ docker run --rm envoyproxy/|envoy_distroless_docker_image| --version

.. tab:: Get Envoy

.. code-block:: console

$ docker pull getenvoy/envoy:stable
$ docker run --rm getenvoy/envoy:stable --version

.. tip::

To use the ``nightly`` version from `Get Envoy <https://www.getenvoy.io/>`__
replace the word ``stable`` with ``nightly`` in the above commands.

.. _install_binaries:

Pre-built Envoy Docker images
Expand Down