Skip to content

Commit

Permalink
Updates comments in spec to clarify these are starting values
Browse files Browse the repository at this point in the history
  • Loading branch information
igooch authored and zmerlynn committed Feb 9, 2023
1 parent db178cf commit 6054cc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install/helm/agones/templates/crds/_gameserverspecschema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ properties:
properties:
name: # counter name
type: string
count: # current count
count: # initial count
type: integer
capacity: # max capacity of the counter
type: integer
Expand All @@ -178,14 +178,14 @@ properties:
properties:
name: # array name (players, sessions, rooms, etc.)
type: string
count: # number of items in the values array
count: # initial number of items in the values array
type: integer
capacity: # maximum capacity of the array (can be less than or equal to value of maxItems)
capacity: # max capacity of the array (can be less than or equal to value of maxItems)
type: integer
values:
type: array
x-kubernetes-list-type: set # Requires items in the array to be unique
maxItems: 1000 # maximum possible size of the value array (cannot be updated)
maxItems: 1000 # max possible size of the value array (cannot be updated)
items: # name of the item (player1, session1, room1, etc.)
type: string
{{- end }}
Expand Down

0 comments on commit 6054cc3

Please sign in to comment.