Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 93e3f8d

Browse files
authored
fix: set event-gateway-demo domain extension to .com (second attempt)
1 parent 5f10857 commit 93e3f8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deployments/k8s/event-gateway-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Helm chart that installs a demo of the AsyncAPI Event-Gateway.
1616
|-----|------|---------|-------------|
1717
| asyncapi-event-gateway.env.EVENTGATEWAY_ASYNC_API_DOC | string | `"/app/asyncapi.yaml"` | This is where the asyncapi.yaml file is mounted when `--set-file asyncapi-event-gateway.asyncapiFileContent=event-gateway-demo/event-gateway-demo.asyncapi.yaml`. |
1818
| asyncapi-event-gateway.env.EVENTGATEWAY_DEBUG | string | `"true"` | |
19-
| asyncapi-event-gateway.env.EVENTGATEWAY_KAFKA_PROXY_ADDRESS | string | `"event-gateway-demo.asyncapi.org"` | his is the address that points to the DO load balancer in front of the Event-Gateway K8s service. |
19+
| asyncapi-event-gateway.env.EVENTGATEWAY_KAFKA_PROXY_ADDRESS | string | `"event-gateway-demo.asyncapi.com"` | This is the address that points to the DO load balancer in front of the Event-Gateway K8s service. |
2020
| asyncapi-event-gateway.env.EVENTGATEWAY_KAFKA_PROXY_BROKER_FROM_SERVER | string | `"asyncapi-kafka-test"` | Only use `asyncapi-kafka-test` declared server. |
2121
| asyncapi-event-gateway.env.EVENTGATEWAY_KAFKA_PROXY_EXTRA_FLAGS | string | `"dynamic-sequential-min-port=20473"` | Dynamic broker listeners will start on this port. Aiven cluster has, at least, 3 brokers (3 discovered brokers, one of those is known as the bootstrap server (20472)). |
2222
| asyncapi-event-gateway.env.EVENTGATEWAY_KAFKA_PROXY_MESSAGE_VALIDATION_PUBLISH_TO_KAFKA_TOPIC | string | `"event-gateway-demo-validation"` | event-gateway-demo-validation is the topic where validation errors will be published to. The app reads from it and exposes those errors through the ws server. |

deployments/k8s/event-gateway-demo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ asyncapi-event-gateway:
2828
# -- Value comes from `--set asyncapi-event-gateway.secret.data.cert=$(base64 ca-file-path)`
2929
EVENTGATEWAY_KAFKA_PROXY_TLS_CA_CHAIN_CERT_FILE: "/etc/certs/ca"
3030
# -- his is the address that points to the DO load balancer in front of the Event-Gateway K8s service.
31-
EVENTGATEWAY_KAFKA_PROXY_ADDRESS: "event-gateway-demo.asyncapi.org"
31+
EVENTGATEWAY_KAFKA_PROXY_ADDRESS: "event-gateway-demo.asyncapi.com"
3232

3333
# -- cert, key and ca set via `--set asyncapi-event-gateway.secret.data.{cert|key|ca}=$(base64 filepath)`
3434
secret:

docs/config/kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Some advanced configuration is only available through environment variables.
2828

2929
| Environment variable | Type | Description | Default | Required | examples |
3030
|-----------------------------------------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------|----------|---------------------------------------------------------------------------------------------------------|
31-
| EVENTGATEWAY_KAFKA_PROXY_ADDRESS | string | Address for this proxy. Clients will use this address as host when connecting to the brokers through this proxy, so it should be reachable by your clients. Most probably a domain name. | `0.0.0.0` | No | `event-gateway-demo.asyncapi.org` |
31+
| EVENTGATEWAY_KAFKA_PROXY_ADDRESS | string | Address for this proxy. Clients will use this address as host when connecting to the brokers through this proxy, so it should be reachable by your clients. Most probably a domain name. | `0.0.0.0` | No | `event-gateway-demo.asyncapi.com` |
3232
| EVENTGATEWAY_KAFKA_PROXY_BROKER_FROM_SERVER | string | When set, only the specified server will be considered instead of all servers. | - | No | `name-of-server1`, `server-test` |
3333
| EVENTGATEWAY_KAFKA_PROXY_MESSAGE_VALIDATION_ENABLED | boolean | Enable or disable validation of Kafka messages | `true` | No | `true`, `false` |
3434
| EVENTGATEWAY_KAFKA_PROXY_EXTRA_FLAGS | string | Advanced configuration. Configure any flag from [here](https://github.com/grepplabs/kafka-proxy/blob/4f3b89fbaecb3eb82426f5dcff5f76188ea9a9dc/cmd/kafka-proxy/server.go#L85-L195). Multiple values can be configured by using pipe separation (`\|`) | - | No | `tls-enable=true\|tls-client-cert-file=/opt/var/service.cert\|tls-client-key-file=/opt/var/service.key` |

0 commit comments

Comments
 (0)