Skip to content

Commit

Permalink
Remove name from all examples and configurations (#295)
Browse files Browse the repository at this point in the history
Since we removed `name` from Endpoint configs, this broke all our
examples, and the default configuration for the Docker image.

This fixes these issues 😊
  • Loading branch information
markmandel authored Jun 16, 2021
1 parent fd77e76 commit a4f6b73
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
3 changes: 1 addition & 2 deletions build/release/quilkin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@
version: v1alpha1
static:
endpoints:
- name: noop
address: 127.0.0.1:0
- address: 127.0.0.1:0
3 changes: 1 addition & 2 deletions examples/agones-xonotic/client-compress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ static:
on_write: DECOMPRESS
mode: SNAPPY
endpoints:
- name: xonotic
address: ${GAMESERVER_IP}:${GAMESERVER_PORT}
- address: ${GAMESERVER_IP}:${GAMESERVER_PORT}
3 changes: 1 addition & 2 deletions examples/agones-xonotic/sidecar-compress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ data:
on_write: COMPRESS
mode: SNAPPY
endpoints:
- name: xonotic
address: 127.0.0.1:26000
- address: 127.0.0.1:26000
---
apiVersion: "agones.dev/v1"
kind: Fleet
Expand Down
3 changes: 1 addition & 2 deletions examples/agones-xonotic/sidecar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ data:
port: 26001
static:
endpoints:
- name: xonotic
address: 127.0.0.1:26000
- address: 127.0.0.1:26000
---
apiVersion: "agones.dev/v1"
kind: Fleet
Expand Down
3 changes: 1 addition & 2 deletions examples/iperf3/proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ proxy:
port: 8000
static:
endpoints:
- name: iperf3 client
address: 127.0.0.1:8001
- address: 127.0.0.1:8001
6 changes: 2 additions & 4 deletions examples/proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ proxy:
port: 7001 # the port to receive traffic to locally
static: # Provide static configuration of endpoints
endpoints: # array of potential endpoints to send on traffic to
- name: Game Server No. 1
address: 127.0.0.1:26000
- address: 127.0.0.1:26000
metadata: # Metadata associated with the endpoint
quilkin.dev:
tokens:
- MXg3aWp5Ng== # the connection byte array to route to, encoded as base64 (string value: 1x7ijy6)
- OGdqM3YyaQ== # (string value: 8gj3v2i)
- name: Game Server No. 2
address: 127.0.0.1:26001
- address: 127.0.0.1:26001
metadata: # Metadata associated with the endpoint
quilkin.dev:
tokens:
Expand Down

0 comments on commit a4f6b73

Please sign in to comment.