Skip to content

Commit

Permalink
remove extra character and add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
indexjoseph committed Jun 25, 2024
1 parent bf4b616 commit 2166707
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion install/helm/agones/defaultfeaturegates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RollingUpdateFix: false
PortRanges: false
PortPolicyNone: false

# Dev features`
# Dev features
ScheduledAutoscaler: false

# Example feature
Expand Down
12 changes: 6 additions & 6 deletions install/helm/agones/templates/crds/_fleetautoscalerpolicy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,24 +123,24 @@ policy:
properties:
uid: # The uid of a chain entry.
type: string
schedule:
schedule: # Defines when the policy is applied.
type: object
properties:
timezone: # Timezone to be used for the between period and active period.
type: string
between:
type: object
start:
start: # Defines when to start evaluating the active period.
type: string
end:
end: # Defines when to stop evaluating the active period.
type: string
activePeriod:
type: object
startCron: # Cron expression defining the start time
startCron: # Cron expression defining when to start applying the policy.
type: string
duration: # The length of time the policy should be applied for
duration: # The length of time the policy should be applied for.
type: string
policy:
policy: # Defines which policy to apply during the active period. Required.
type: object
required:
- type
Expand Down
12 changes: 6 additions & 6 deletions install/yaml/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5779,24 +5779,24 @@ spec:
properties:
uid: # The uid of a chain entry.
type: string
schedule:
schedule: # Defines when the policy is applied.
type: object
properties:
timezone: # Timezone to be used for the between period and active period.
type: string
between:
type: object
start:
start: # Defines when to start evaluating the active period.
type: string
end:
end: # Defines when to stop evaluating the active period.
type: string
activePeriod:
type: object
startCron: # Cron expression defining the start time
startCron: # Cron expression defining when to start applying the policy.
type: string
duration: # The length of time the policy should be applied for
duration: # The length of time the policy should be applied for.
type: string
policy:
policy: # Defines which policy to apply during the active period. Required.
type: object
required:
- type
Expand Down

0 comments on commit 2166707

Please sign in to comment.