Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove name from all examples and configurations #295

Merged
merged 1 commit into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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