Add OpenSUSE support

Add OpenSUSE support for installation.

Closes #10455.

PiperOrigin-RevId: 293880298
diff --git a/site/docs/install-suse.md b/site/docs/install-suse.md
new file mode 100644
index 0000000..ef0484f
--- /dev/null
+++ b/site/docs/install-suse.md
@@ -0,0 +1,28 @@
+---
+layout: documentation
+title: Installing Bazel on openSUSE
+---
+
+# Installing Bazel on openSUSE Tumbleweed & Leap
+
+NOTE: The Bazel team does not officially maintain openSUSE support. For issues
+using Bazel on openSUSE please file a ticket at [bugzilla.opensuse.org](https://bugzilla.opensuse.org/).
+
+Packages are provided for openSUSE Tumbleweed and Leap. You can find all
+available Bazel versions via openSUSE's [software search](https://software.opensuse.org/search?utf8=%E2%9C%93&baseproject=ALL&q=bazel).
+
+The commands below must be run either via `sudo` or while logged in as `root`.
+
+## Installing Bazel on openSUSE
+
+Run the following commands to install the package. If you need a specific
+version, you can install it via the specific `bazelXXX` package, otherwise,
+just `bazel` is enough:
+
+```bash
+# Install the latest Bazel version.
+zypper install bazel
+
+# Alternatively: Install Bazel 1.2.
+zypper install bazel1.2
+```
diff --git a/site/docs/install.md b/site/docs/install.md
index edfe5e2..1881480 100644
--- a/site/docs/install.md
+++ b/site/docs/install.md
@@ -8,6 +8,7 @@
 See the instructions for installing Bazel on:
 
 *   [Ubuntu Linux](install-ubuntu.md)
+*   [openSUSE](install-suse.md)
 *   [Fedora 25, 26, 27, 28, and CentOS 7](install-redhat.md)
 *   [macOS](install-os-x.md)
 *   [Windows](install-windows.md)