diff --git a/content/en/docs/tasks/traffic-management/ingress/service-apis/index.md b/content/en/docs/tasks/traffic-management/ingress/service-apis/index.md new file mode 100644 index 0000000000..c48542d41f --- /dev/null +++ b/content/en/docs/tasks/traffic-management/ingress/service-apis/index.md @@ -0,0 +1,116 @@ +--- +title: Kubernetes Service APIs [Experimental] +description: Describes how to configure the Kubernetes Service APIs with Istio. +weight: 99 +keywords: [traffic-management,ingress] +owner: istio/wg-networking-maintainers +test: no +--- + +This task describes how to configure Istio to expose a service outside of the service mesh cluster, using the Kubernetes [Service APIs](https://kubernetes-sigs.github.io/service-apis/). These APIs are an actively developed evolution of the `Service` and `Ingress` APIs. + +{{< warning >}} +Both the APIs, as well as Istio's implementation of the APIs, are currently experimental and intended only for evaluation. They will undergo significant changes in future versions. For production deployment, we recommend using the [Istio Gateway](/docs/tasks/traffic-management/ingress/ingress-control/). +{{< /warning >}} + +## Setup + +1. Install the Service APIs CRDs: + + {{< text bash >}} + $ kubectl kustomize "github.com/kubernetes-sigs/service-apis/config/crd?ref=v0.1.0-rc2" | kubectl apply -f - + {{< /text >}} + +1. Install Istio, or reconfigure an existing installation to enable the Service APIs controller: + + {{< text bash >}} + $ istioctl install --set values.pilot.env.PILOT_ENABLED_SERVICE_APIS=true + {{< /text >}} + +1. Follow the instructions in the [Determining the ingress IP and ports](/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-ip-and-ports) sections of the [Ingress Gateways task](/docs/tasks/traffic-management/ingress/ingress-control/) in order to retrieve the external IP address of your ingress gateway. + +## Configuring a Gateway + +See the [Service APIs](https://kubernetes-sigs.github.io/service-apis/) documentation for information about the APIs. + +1. Deploy a test application: + + {{< text bash >}} + $ kubectl apply -f @samples/httpbin/httpbin.yaml@ + {{< /text >}} + +1. Deploy the Service APIs configuration: + + {{< text bash >}} + $ kubectl apply -f - <}} + +1. Access the _httpbin_ service using _curl_: + + {{< text bash >}} + $ curl -s -HHost:httpbin.example.com "http://$INGRESS_HOST:$INGRESS_PORT/get" + HTTP/1.1 200 OK + server: istio-envoy + ... + {{< /text >}} + + Note the use of the `-H` flag to set the _Host_ HTTP header to + "httpbin.example.com". This is needed because the `HTTPRoute` is configured to handle "httpbin.example.com", + but in your test environment you have no DNS binding for that host and are simply sending your request to the ingress IP. + +1. Access any other URL that has not been explicitly exposed. You should see an HTTP 404 error: + + {{< text bash >}} + $ curl -s -I -HHost:httpbin.example.com "http://$INGRESS_HOST:$INGRESS_PORT/headers" + HTTP/1.1 404 Not Found + ... + {{< /text >}}