Skip to content

Commit

Permalink
Expose ephemeral-storage in resource config (pingcap#1398)
Browse files Browse the repository at this point in the history
* Expose ephemeral-storage in resouces config

Signed-off-by: Aylei <[email protected]>

* Update pkg/tkctl/cmd/info/info.go

Co-Authored-By: weekface <[email protected]>

Co-authored-by: weekface <[email protected]>
Co-authored-by: Yecheng Fu <[email protected]>
  • Loading branch information
3 people committed Dec 25, 2019
1 parent 02e8501 commit 51b6820
Show file tree
Hide file tree
Showing 21 changed files with 548 additions and 714 deletions.
40 changes: 40 additions & 0 deletions manifests/crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1029,9 +1029,19 @@ spec:
type: object
configUpdateStrategy:
type: string
limits:
description: 'Limits describes the maximum amount of compute resources
allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
replicas:
format: int32
type: integer
requests:
description: 'Requests describes the minimum amount of compute resources
required. If Requests is omitted for a container, it defaults
to Limits if that is explicitly specified, otherwise to an implementation-defined
value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
storageClassName:
type: string
required:
Expand All @@ -1048,9 +1058,19 @@ spec:
change, change this field without actually changing the configuration
will not trigger rolling-update
type: string
limits:
description: 'Limits describes the maximum amount of compute resources
allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
replicas:
format: int32
type: integer
requests:
description: 'Requests describes the minimum amount of compute resources
required. If Requests is omitted for a container, it defaults
to Limits if that is explicitly specified, otherwise to an implementation-defined
value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
storageClassName:
type: string
required:
Expand Down Expand Up @@ -1455,6 +1475,10 @@ spec:
type: string
enableTLSClient:
type: boolean
limits:
description: 'Limits describes the maximum amount of compute resources
allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
maxFailoverCount:
format: int32
type: integer
Expand All @@ -1467,6 +1491,12 @@ spec:
replicas:
format: int32
type: integer
requests:
description: 'Requests describes the minimum amount of compute resources
required. If Requests is omitted for a container, it defaults
to Limits if that is explicitly specified, otherwise to an implementation-defined
value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
separateSlowLog:
type: boolean
storageClassName:
Expand Down Expand Up @@ -2598,6 +2628,10 @@ spec:
type: object
configUpdateStrategy:
type: string
limits:
description: 'Limits describes the maximum amount of compute resources
allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
maxFailoverCount:
format: int32
type: integer
Expand All @@ -2606,6 +2640,12 @@ spec:
replicas:
format: int32
type: integer
requests:
description: 'Requests describes the minimum amount of compute resources
required. If Requests is omitted for a container, it defaults
to Limits if that is explicitly specified, otherwise to an implementation-defined
value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/'
type: object
storageClassName:
type: string
required:
Expand Down
Loading

0 comments on commit 51b6820

Please sign in to comment.