File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -31,21 +31,21 @@ jobs:
31
31
32
32
- name : Ensure etcd
33
33
id : Ensure-etcd
34
- uses : actions/cache@v2
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : ~/go/bin/etcd
37
37
key : ${{ runner.os }}-kubebuilder-${{ steps.get-kubebuilder-version.outputs.version }}-etcd
38
38
39
39
- name : Ensure kube-apiserver
40
40
id : ensure-kube-apiserver
41
- uses : actions/cache@v2
41
+ uses : actions/cache@v4
42
42
with :
43
43
path : ~/go/bin/kube-apiserver
44
44
key : ${{ runner.os }}-kubebuilder-${{ steps.get-kubebuilder-version.outputs.version }}-kube-apiserver
45
45
46
46
- name : Ensure Kubebuilder Metadata
47
47
id : ensure-kubebuilder-metadata
48
- uses : actions/cache@v2
48
+ uses : actions/cache@v4
49
49
with :
50
50
path : ~/.kubebuilder/${{ steps.get-kubebuilder-version.outputs.version }}
51
51
key : ${{ runner.os }}-kubebuilder-${{ steps.get-kubebuilder-version.outputs.version }}
Original file line number Diff line number Diff line change @@ -233,6 +233,8 @@ type Size struct {
233
233
Memory string `json:"memory,omitempty"`
234
234
// SharedBuffer of the database
235
235
SharedBuffer string `json:"sharedBuffer,omitempty"`
236
+ // Memoryfactor used to calculate the memory
237
+ MemoryFactor uint8 `json:"memoryfactor,omitempty"`
236
238
237
239
// StorageSize the amount of Storage this database will get
238
240
// +kubebuilder:default="1Gi"
Original file line number Diff line number Diff line change @@ -165,6 +165,9 @@ spec:
165
165
memory :
166
166
description : Memory is in the format as pod.spec.resource.request.memory
167
167
type : string
168
+ memoryfactor :
169
+ description : Memoryfactor used to calculate the memory
170
+ type : integer
168
171
sharedBuffer :
169
172
description : SharedBuffer of the database
170
173
type : string
You can’t perform that action at this time.
0 commit comments