Skip to content

Commit

Permalink
minor docs updates
Browse files Browse the repository at this point in the history
  • Loading branch information
maleck13 committed May 7, 2024
1 parent 1937542 commit e240566
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/install/install-openshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ kubectl create ns kuadrant-system

Setup a catalogsource:

```
```bash
kubectl apply -f - <<EOF
apiVersion: operators.coreos.com/v1alpha1
kind: CatalogSource
metadata:
Expand All @@ -146,6 +147,7 @@ spec:
updateStrategy:
registryPoll:
interval: 45m
EOF
```

AWS Route 53 credentials for TLS verification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,15 @@ You can use `curl` to hit your endpoint. You should see a `403` Because this exa
curl -k -w "%{http_code}" https://$(kubectl get httproute test -n ${gatewayNS} -o=jsonpath='{.spec.hostnames[0]}')
```


### Opening up the Gateway for other namespaces:

As you have now configured the Gateway, secured it with Kuadrant policies and tested it, you can now open it up for use by other teams in other namespaces:

```
kubectl patch gateway ${gatewayName} -n ${gatewayNS} --type='json' -p='[{"op": "replace", "path": "/spec/listeners/0/allowedRoutes/namespaces/from", "value":"All"}]'
```

### Extending this Gateway to multiple clusters and configuring geo-based routing

To distribute this Gateway across multiple clusters, repeat this setup process for each cluster. By default, this will implement a round-robin DNS strategy to distribute traffic evenly across the different clusters. Setting up your Gateways to serve clients based on their geographic location is straightforward with your current configuration.
Expand Down

0 comments on commit e240566

Please sign in to comment.