Skip to content

Commit

Permalink
Update implementation-guide.md (#33333)
Browse files Browse the repository at this point in the history
  • Loading branch information
colesnodgrass authored Dec 12, 2023
1 parent b3a3fc0 commit f02188c
Showing 1 changed file with 24 additions and 20 deletions.
44 changes: 24 additions & 20 deletions docs/enterprise-setup/implementation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,26 +202,30 @@ To access the Airbyte UI, you will need to manually attach an ingress configurat

```yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
spec:
rules:
- host: ## example: enterprise-demo.airbyte.com
http:
paths:
- backend:
service:
name: airbyte-pro-airbyte-webapp-svc
port:
number: ## example: 30080
path: /
pathType: Prefix
- backend:
service:
name: airbyte-pro-airbyte-keycloak-svc
port:
number: ## example: 30081
path: /auth
pathType: Prefix
kind: Ingress
metadata:
name: enterprise-demo
spec:
rules:
- host: # host, example: enterprise-demo.airbyte.com
http:
paths:
- backend:
service:
# format is ${RELEASE_NAME}-airbyte-webapp-svc
name: airbyte-pro-airbyte-webapp-svc
port:
number: # service port, example: 8080
path: /
pathType: Prefix
- backend:
service:
# format is ${RELEASE_NAME}-airbyte-keycloak-svc
name: airbyte-pro-airbyte-keycloak-svc
port:
number: # service port, example: 8180
path: /auth
pathType: Prefix
```

You may configure ingress using a load balancer or an API Gateway. We do not currently support most service meshes (such as Istio). If you are having networking issues after fully deploying Airbyte, please verify that firewalls or lacking permissions are not interfering with pod-pod communication. Please also verify that deployed pods have the right permissions to make requests to your external database.
Expand Down

0 comments on commit f02188c

Please sign in to comment.