@@ -63,6 +63,116 @@ spec:
6363 description : Size of the redis cluster
6464 format : int32
6565 type : integer
66+ resources :
67+ description : Resources QoS configuration for redis servers
68+ properties :
69+ claims :
70+ description : |-
71+ Claims lists the names of resources, defined in spec.resourceClaims,
72+ that are used by this container.
73+
74+
75+ This is an alpha field and requires enabling the
76+ DynamicResourceAllocation feature gate.
77+
78+
79+ This field is immutable. It can only be set for containers.
80+ items :
81+ description : ResourceClaim references one entry in PodSpec.ResourceClaims.
82+ properties :
83+ name :
84+ description : |-
85+ Name must match the name of one entry in pod.spec.resourceClaims of
86+ the Pod where this field is used. It makes that resource available
87+ inside a container.
88+ type : string
89+ required :
90+ - name
91+ type : object
92+ type : array
93+ x-kubernetes-list-map-keys :
94+ - name
95+ x-kubernetes-list-type : map
96+ limits :
97+ additionalProperties :
98+ anyOf :
99+ - type : integer
100+ - type : string
101+ pattern : ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
102+ x-kubernetes-int-or-string : true
103+ description : |-
104+ Limits describes the maximum amount of compute resources allowed.
105+ More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
106+ type : object
107+ requests :
108+ additionalProperties :
109+ anyOf :
110+ - type : integer
111+ - type : string
112+ pattern : ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
113+ x-kubernetes-int-or-string : true
114+ description : |-
115+ Requests describes the minimum amount of compute resources required.
116+ If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
117+ otherwise to an implementation-defined value. Requests cannot exceed Limits.
118+ More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
119+ type : object
120+ type : object
121+ sentinelResources :
122+ description : Resources QoS configuration for sentinel servers
123+ properties :
124+ claims :
125+ description : |-
126+ Claims lists the names of resources, defined in spec.resourceClaims,
127+ that are used by this container.
128+
129+
130+ This is an alpha field and requires enabling the
131+ DynamicResourceAllocation feature gate.
132+
133+
134+ This field is immutable. It can only be set for containers.
135+ items :
136+ description : ResourceClaim references one entry in PodSpec.ResourceClaims.
137+ properties :
138+ name :
139+ description : |-
140+ Name must match the name of one entry in pod.spec.resourceClaims of
141+ the Pod where this field is used. It makes that resource available
142+ inside a container.
143+ type : string
144+ required :
145+ - name
146+ type : object
147+ type : array
148+ x-kubernetes-list-map-keys :
149+ - name
150+ x-kubernetes-list-type : map
151+ limits :
152+ additionalProperties :
153+ anyOf :
154+ - type : integer
155+ - type : string
156+ pattern : ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
157+ x-kubernetes-int-or-string : true
158+ description : |-
159+ Limits describes the maximum amount of compute resources allowed.
160+ More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
161+ type : object
162+ requests :
163+ additionalProperties :
164+ anyOf :
165+ - type : integer
166+ - type : string
167+ pattern : ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
168+ x-kubernetes-int-or-string : true
169+ description : |-
170+ Requests describes the minimum amount of compute resources required.
171+ If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
172+ otherwise to an implementation-defined value. Requests cannot exceed Limits.
173+ More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
174+ type : object
175+ type : object
66176 tls :
67177 description : TLS settings for Redis service and internal Redis replication
68178 properties :
0 commit comments