Skip to content

Commit 3288f8b

Browse files
Release 0.10.1 (#553)
* fix Signed-off-by: Piotr Pawłowski <[email protected]> * Merge develop to release-0.10 (#551) * Fix max-nodes when creating flex queued nodepool of tpus (#541) * fix max-nodes when creating tpu dws flex queued nodepools Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> * Fix kueue version in yaml string and loosen dependecy on cloud-storage (#546) * fix kueue version Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> * Remove RBAC container (#547) * remove rbac contaier Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> * Merge main to develop (#542) * version updated to 0.10.0 * Fix max-nodes when creating flex queued nodepool of tpus (#541) * fix max-nodes when creating tpu dws flex queued nodepools Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> Co-authored-by: pawloch00 <[email protected]> * fix kjob.py pyink (#552) Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> Co-authored-by: Farhad Sharabiani <[email protected]> * bump xpk version Signed-off-by: Piotr Pawłowski <[email protected]> --------- Signed-off-by: Piotr Pawłowski <[email protected]> Co-authored-by: Farhad Sharabiani <[email protected]>
1 parent 9b1f2a9 commit 3288f8b

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies = [
4040
"google-api-core==2.24.1",
4141
"packaging==24.2",
4242
"google-cloud-filestore==1.12.0",
43-
"google-cloud-storage==2.19.0"
43+
"google-cloud-storage"
4444
]
4545

4646
[project.urls]

src/xpk/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from ..utils.console import xpk_print
2323

2424
# This is the version for XPK PyPI package
25-
__version__ = 'v0.10.0'
25+
__version__ = 'v0.10.1'
2626
XPK_CURRENT_VERSION = __version__
2727
XPK_CONFIG_FILE = os.path.expanduser('~/.config/xpk/config.yaml')
2828

src/xpk/core/kueue.py

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
- --zap-log-level=2
221221
command:
222222
- /manager
223-
image: registry.k8s.io/kueue/kueue:v0.10.0
223+
image: registry.k8s.io/kueue/kueue:{KUEUE_VERSION}
224224
imagePullPolicy: Always
225225
livenessProbe:
226226
httpGet:
@@ -258,17 +258,6 @@
258258
- mountPath: /controller_manager_config.yaml
259259
name: manager-config
260260
subPath: controller_manager_config.yaml
261-
- args:
262-
- --secure-listen-address=0.0.0.0:8443
263-
- --upstream=http://127.0.0.1:8080/
264-
- --logtostderr=true
265-
- --v=10
266-
image: registry.k8s.io/kubebuilder/kube-rbac-proxy:v0.16.0
267-
name: kube-rbac-proxy
268-
ports:
269-
- containerPort: 8443
270-
name: https
271-
protocol: TCP
272261
securityContext:
273262
runAsNonRoot: true
274263
serviceAccountName: kueue-controller-manager
@@ -536,7 +525,7 @@ def update_kueue_resources_if_necessary(args):
536525
f'{max(math.ceil(int(out) * MEMORY_SIZE_PER_VM), MIN_MEMORY_LIMIT_SIZE)}Mi'
537526
)
538527
yml_string = kueue_controller_manager_yml.format(
539-
memory_limit_size=new_memory_limit,
528+
memory_limit_size=new_memory_limit, KUEUE_VERSION=KUEUE_VERSION
540529
)
541530
tmp = write_tmp_file(yml_string)
542531
command = f'kubectl apply -f {str(tmp.file.name)}'

0 commit comments

Comments
 (0)