Find address of the API Server
apiServer=$(az aro show -g $RESOURCEGROUP -n $CLUSTER --query apiserverProfile.url -o tsv)
ex: apiServer=$(az aro show -g aro_group -n arocluster --query apiserverProfile.url -o tsv)
oc login $apiServer -u kubeadmin -p <kubeadmin password>
C:\Users\santosh>helm install my-kong2 kong/kong -n kong --values ./full-k4k8s-with-kong-enterprise.conf.txt
coalesce.go:289: warning: destination for kong.proxy.stream is a table. Ignoring non-table value ([])
coalesce.go:289: warning: destination for kong.proxy.stream is a table. Ignoring non-table value ([])
NAME: my-kong2
LAST DEPLOYED: Sun Feb 18 15:16:30 2024
NAMESPACE: kong
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
To connect to Kong, please execute the following commands:
HOST=$(kubectl get svc --namespace kong my-kong2-kong-proxy -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
PORT=$(kubectl get svc --namespace kong my-kong2-kong-proxy -o jsonpath='{.spec.ports[0].port}')
export PROXY_IP=${HOST}:${PORT}
curl $PROXY_IP
Once installed, please follow along the getting started guide to start using
Kong: https://docs.konghq.com/kubernetes-ingress-controller/latest/guides/getting-started/
Article: https://arifkiziltepe.medium.com/kong-installation-on-openshift-3eb3291d3998
No comments:
Post a Comment