Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Diana <75819066+cloudjumpercat@users.noreply.github.com>
  • Loading branch information
rspurgeon and cloudjumpercat authored Jun 29, 2022
1 parent b48dfd9 commit 9741b6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/gateway/2.8.x/install-and-run/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This page explains how to install {{site.base_gateway}} with {{site.kic_product_

This page also includes the equivalent commands for OpenShift.

Note that in DB-less mode on Kubernetes, config is stored in etcd, the Kubernetes native data store. For more information see [Kubernetes Deployment Options](/gateway/{{page.kong_version}}/plan-and-deploy/kubernetes-deployment-options).
In DB-less mode on Kubernetes, the config is stored in etcd, the Kubernetes native data store. For more information, see [Kubernetes Deployment Options](/gateway/{{page.kong_version}}/plan-and-deploy/kubernetes-deployment-options).

The {{site.base_gateway}} software is governed by the
[Kong Software License Agreement](https://konghq.com/kongsoftwarelicense/).
Expand Down Expand Up @@ -86,7 +86,7 @@ oc new-project kong
1. To make HTTP requests, you need the IP address of the load balancer. Get the `loadBalancer` address and store it in a local `PROXY_IP` environment variable:

{:.note}
> **Note:** Some cluster providers provide only a DNS name for load balancers. In this case, specify `.hostname` instead of `.ip`.
> **Note:** Some cluster providers only provide a DNS name for load balancers. In this case, specify `.hostname` instead of `.ip`.

```sh
export PROXY_IP=$(kubectl get -o jsonpath="{.status.loadBalancer.ingress[0].ip}" service -n kong kong-proxy)
Expand All @@ -110,12 +110,12 @@ oc new-project kong
oc get service kong-proxy -n kong
```

1. Finally, invoke a test request:
1. Invoke a test request:
```sh
curl $PROXY_IP
```

which should return a response from the Kong gateway:
This should return the following response from Gateway:

```sh
{"message":"no Route matched with those values"}
Expand Down

0 comments on commit 9741b6b

Please sign in to comment.