kayx23 commented on code in PR #2481: URL: https://github.com/apache/apisix-ingress-controller/pull/2481#discussion_r2215570943
########## docs/en/latest/getting-started/get-apisix-ingress-controller.md: ########## @@ -0,0 +1,136 @@ +--- +title: Get APISIX and APISIX Ingress Controller +keywords: + - APISIX ingress + - Apache APISIX + - Kubernetes ingress +description: Learn how to quickly install and set up Apache APISIX Ingres Controller. +--- + +<!-- +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +--> + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +APISIX Ingress Controller is a [Kubernetes ingress controller](https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/) using [Apache APISIX](https://apisix.apache.org) as the high performance reverse proxy. + +APISIX Ingress Controller can be configured using the native Kubernetes Ingress or Gateway API, as well as with APISIX’s own declarative and easy-to-use custom resources. The controller translates these resources into APISIX configuration. + +This tutorial series walks you through how to quickly get started with APISIX on a [kind](https://kind.sigs.k8s.io) Kubernetes cluster and use the APISIX Ingress Controller to manage resources. + +## Prerequisites + +* Install [Docker](https://docs.docker.com/get-docker/) as a dependency of [kind](https://kind.sigs.k8s.io). +* Install [kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) to start a local Kubernetes cluster, or use any existing Kubernetes cluster (version 1.26+). +* Install [Helm](https://helm.sh/docs/intro/install/) (version 3.8+). +* Install [kubectl](https://kubernetes.io/docs/tasks/tools/) to run commands against Kubernetes clusters. + +## Create a Cluster and Configure Namespace + +In this section, you will be creating a kind cluster and configuring the namespace. Skip to [the next section](#install-apisix-and-apisix-ingress-controller-standalone-api-driven-mode) if you already have an existing cluster and a corresponding namspace. + +Ensure you have Docker running and start a kind cluster: + +```shell +kind create cluster +``` + +Create a new namespace `ingress-apisix`: + +```shell +kubectl create namespace ingress-apisix +``` + +Set the namespace to `ingress-apisix` to avoid specifying it explicitly in each subsequent command: + +```shell +kubectl config set-context --current --namespace=ingress-apisix +``` + +## Install APISIX and APISIX Ingress Controller (Standalone API-driven mode) + +Install the Gateway API CRDs, [APISIX Standalone API-driven mode](https://apisix.apache.org/docs/apisix/deployment-modes/#api-driven-experimental), and APISIX Ingress Controller: Review Comment: Correspondence to https://github.com/apache/apisix-helm-chart/blob/master/charts/apisix-ingress-controller/values.yaml#L86 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org