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

fix required fields bug #282

Merged
merged 1 commit into from
Jun 20, 2022
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
45 changes: 22 additions & 23 deletions installfiles/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverbuilds.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -63,7 +63,8 @@ spec:
description: GameServerBuildSpec defines the desired state of GameServerBuild
properties:
buildID:
description: Build is is the BuildID for this Build
description: BuildID is is the BuildID for this Build
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for this GameServerBuild
Expand Down Expand Up @@ -4190,7 +4191,15 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this Build belongs to
format: string
minLength: 1
type: string
required:
- buildID
- max
- portsToExpose
- standingBy
- titleID
type: object
status:
description: GameServerBuildStatus defines the observed state of GameServerBuild
Expand Down Expand Up @@ -4228,19 +4237,13 @@ spec:
specReplicasPath: .spec.standingBy
statusReplicasPath: .status.currentStandingBy
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverdetails.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -4298,18 +4301,12 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
creationTimestamp: null
name: gameservers.mps.playfab.com
spec:
Expand Down Expand Up @@ -4356,7 +4353,8 @@ spec:
description: GameServerSpec defines the desired state of GameServer
properties:
buildID:
description: Build is the BuildID for this GameServer
description: BuildID is the BuildID for this GameServer
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for the GameServerBuild this GameServer belongs to
Expand Down Expand Up @@ -8470,7 +8468,14 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this GameServer belongs to
format: string
minLength: 1
type: string
required:
- buildID
- portsToExpose
- template
- titleID
type: object
status:
description: GameServerStatus defines the observed state of GameServer
Expand Down Expand Up @@ -8519,12 +8524,6 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: v1
kind: ServiceAccount
Expand Down
45 changes: 22 additions & 23 deletions installfiles/operator_with_monitoring.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverbuilds.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -63,7 +63,8 @@ spec:
description: GameServerBuildSpec defines the desired state of GameServerBuild
properties:
buildID:
description: Build is is the BuildID for this Build
description: BuildID is is the BuildID for this Build
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for this GameServerBuild
Expand Down Expand Up @@ -4190,7 +4191,15 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this Build belongs to
format: string
minLength: 1
type: string
required:
- buildID
- max
- portsToExpose
- standingBy
- titleID
type: object
status:
description: GameServerBuildStatus defines the observed state of GameServerBuild
Expand Down Expand Up @@ -4228,19 +4237,13 @@ spec:
specReplicasPath: .spec.standingBy
statusReplicasPath: .status.currentStandingBy
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverdetails.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -4298,18 +4301,12 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
creationTimestamp: null
name: gameservers.mps.playfab.com
spec:
Expand Down Expand Up @@ -4356,7 +4353,8 @@ spec:
description: GameServerSpec defines the desired state of GameServer
properties:
buildID:
description: Build is the BuildID for this GameServer
description: BuildID is the BuildID for this GameServer
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for the GameServerBuild this GameServer belongs to
Expand Down Expand Up @@ -8470,7 +8468,14 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this GameServer belongs to
format: string
minLength: 1
type: string
required:
- buildID
- portsToExpose
- template
- titleID
type: object
status:
description: GameServerStatus defines the observed state of GameServer
Expand Down Expand Up @@ -8519,12 +8524,6 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: v1
kind: ServiceAccount
Expand Down
45 changes: 22 additions & 23 deletions installfiles/operator_with_security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverbuilds.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -63,7 +63,8 @@ spec:
description: GameServerBuildSpec defines the desired state of GameServerBuild
properties:
buildID:
description: Build is is the BuildID for this Build
description: BuildID is is the BuildID for this Build
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for this GameServerBuild
Expand Down Expand Up @@ -4190,7 +4191,15 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this Build belongs to
format: string
minLength: 1
type: string
required:
- buildID
- max
- portsToExpose
- standingBy
- titleID
type: object
status:
description: GameServerBuildStatus defines the observed state of GameServerBuild
Expand Down Expand Up @@ -4228,19 +4237,13 @@ spec:
specReplicasPath: .spec.standingBy
statusReplicasPath: .status.currentStandingBy
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: thundernetes-system/thundernetes-serving-cert
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
name: gameserverdetails.mps.playfab.com
spec:
conversion:
Expand Down Expand Up @@ -4298,18 +4301,12 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.9.0
creationTimestamp: null
name: gameservers.mps.playfab.com
spec:
Expand Down Expand Up @@ -4356,7 +4353,8 @@ spec:
description: GameServerSpec defines the desired state of GameServer
properties:
buildID:
description: Build is the BuildID for this GameServer
description: BuildID is the BuildID for this GameServer
format: uuid
type: string
buildMetadata:
description: BuildMetadata is the metadata for the GameServerBuild this GameServer belongs to
Expand Down Expand Up @@ -8470,7 +8468,14 @@ spec:
type: object
titleID:
description: TitleID is the TitleID this GameServer belongs to
format: string
minLength: 1
type: string
required:
- buildID
- portsToExpose
- template
- titleID
type: object
status:
description: GameServerStatus defines the observed state of GameServer
Expand Down Expand Up @@ -8519,12 +8524,6 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
---
apiVersion: v1
kind: ServiceAccount
Expand Down
Loading