Skip to content

Glossary

In GameFabric, there are multiple objects you need to be aware of, that are referenced throughout the documentation. Their names and description are detailed in this section in alphabetical order.

Allocation Sidecar

The Allocation Sidecar is a Sidecar provided by Nitrado for easy integration with the Allocator.

Allocator

The Allocator is an extra product feature that lets you register your game servers against it so that your matchmaker can choose the best available server.

See also docs for using the Allocation Sidecar.

Armada

An Armada is a collection of Fleets, distributed across multiple Sites within one Region. It can have multiple revisions, which are essentially different versions of the same Armada, as it gets updated. Revisions are kept track of in order to allow you to roll back to a previous revision, as well as manage multiple revisions running in parallel (for example during a rollout upgrade)

See also hosting model.

ArmadaSet

An ArmadaSet is the configuration for a set of Armadas that share the same Fleet template and automatic scaling strategy.

See also hosting model.

Branch

GameFabric runs its own internal Container registry proxy, which is where you should push your game server images to in order to have them available in Fleets. Those images are scoped by branch. For example, a standard use case would be to have a development branch and a production branch. The development branch would contain dev images to be used by a development Armada, while the production branch would only contain releases of the game server that make it to production.

Environment

Environments are a mechanism for isolating groups of resources. Resource names must be unique within each environment, but not across environments. They can therefore be used to separate production, staging, testing, and any other environments and ensure that they don't interfere. Alongside the RBAC features, it also allows limiting the access to certain environments from users.

Fleet

A Fleet is a set of warm GameServers that are available to be allocated from. It is an Agones object, which you can find described in more details in their documentation reference. This resource is always managed by an Armada, and can't be configured through the Armada UI any other way than by configuring the relevant Armada's Fleet Template.

Formation

A Formation acts as a template for individual game servers (Vessels) spawned within it. Vessels inherit all properties from their respective Formation, but environment variables and command line arguments can be overridden on a per-vessel basis.

See also hosting model.

Location

A Location is a group of Sites that share a geographical area and other characteristics. This specific resource is not configurable through the Armada UI. It is configured by Nitrado, for you.

Region

A Region is typically a geographic area made up of one or more Locations where resources can be hosted.

Sidecar

A sidecar is a container that runs alongside your game server container, providing additional functionality. For example, Nitrado provides an allocator sidecar which can handle the allocation process for you. You could also run your own sidecars for monitoring or other purposes.

Site

A Site is a cluster that belongs to a Location. This specific resource is not configurable through the Armada UI. It is configured by Nitrado, for you.

SteelShield™

SteelShield is a DDoS protection system designed for the specific purpose of protecting game servers from large scale DDoS attacks.

See also SteelShield docs.

Vessel

A Vessel is a single named game server instance. It can, but doesn't have to be part of a Formation. Each Vessel can be configured completely independently.

See also hosting model.

Wrapper

A wrapper can be used to call your game server binary in order to provide additional functionality.

We provide a wrapper called Game Server Wrapper.

You could also write your own wrapper.