Skip to content

Commit 6c8d786

Browse files
authored
Fixes for vanilla Kubernetes cluster setup (#15)
1 parent 533fe21 commit 6c8d786

10 files changed

+60
-4
lines changed

setup.k8s-v1.25/appwrapper/config_patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
manageJobsWithoutQueueName: true
1212
waitForPodsReady:
1313
enable: false
14-
queueName: default-queue
14+
defaultQueueName: default-queue
1515
schedulerName: scheduler-plugins-scheduler
1616
userRBACAdmissionCheck: false
1717
controllerManager:

setup.k8s-v1.25/appwrapper/kustomization.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@ namespace: mlbatch-system
66
resources:
77
- "https://github.com/project-codeflare/appwrapper/config/default?ref=v0.21.0"
88

9+
labels:
10+
- pairs:
11+
app.kubernetes.io/name: appwrapper
12+
app.kubernetes.io/component: controller
13+
includeSelectors: true
14+
915
images:
1016
- name: quay.io/ibm/appwrapper
1117
newTag: v0.21.0
1218

1319
patches:
14-
- path: manager_resources_patch.yaml
1520
- path: config_patch.yaml
21+
- path: manager_resources_patch.yaml
22+
- path: remove_default_namespace.yaml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$patch: delete
2+
apiVersion: v1
3+
kind: Namespace
4+
metadata:
5+
name: appwrapper-system

setup.k8s-v1.25/kuberay/kustomization.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ namespace: mlbatch-system
66
resources:
77
- "https://github.com/ray-project/kuberay/ray-operator/config/default?ref=v1.1.0"
88

9+
labels:
10+
- pairs:
11+
app.kubernetes.io/name: kuberay
12+
app.kubernetes.io/component: controller
13+
includeSelectors: true
14+
915
patches:
1016
- path: remove_default_namespace.yaml
1117
- path: manager_resources_patch.yaml

setup.k8s-v1.25/kueue/kustomization.yaml

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ namespace: mlbatch-system
66
resources:
77
- "https://github.com/kubernetes-sigs/kueue/config/default?ref=v0.7.1"
88

9+
labels:
10+
- pairs:
11+
app.kubernetes.io/name: kueue
12+
app.kubernetes.io/component: controller
13+
includeSelectors: true
14+
915
configMapGenerator:
1016
- name: manager-config
1117
namespace: kueue-system
@@ -19,6 +25,10 @@ images:
1925
newTag: v0.7.1
2026

2127
patches:
28+
- path: manager_resources_patch.yaml
29+
- path: mutating_webhook_patch.yaml
30+
- path: remove_default_namespace.yaml
31+
- path: validating_webhook_patch.yaml
2232
- target:
2333
kind: ClusterRole
2434
name: manager-role
@@ -34,4 +44,3 @@ patches:
3444
- get
3545
- list
3646
- watch
37-
- path: manager_resources_patch.yaml

setup.k8s-v1.25/kueue/manager_resources_patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
4-
name: kueue-manager
4+
name: controller-manager
55
namespace: system
66
spec:
77
template:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: admissionregistration.k8s.io/v1
2+
kind: MutatingWebhookConfiguration
3+
metadata:
4+
name: mutating-webhook-configuration
5+
webhooks:
6+
- $patch: delete
7+
name: mpod.kb.io
8+
- $patch: delete
9+
name: mjob.kb.io
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$patch: delete
2+
apiVersion: v1
3+
kind: Namespace
4+
metadata:
5+
name: kueue-system
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: admissionregistration.k8s.io/v1
2+
kind: ValidatingWebhookConfiguration
3+
metadata:
4+
name: validating-webhook-configuration
5+
webhooks:
6+
- $patch: delete
7+
name: vpod.kb.io
8+
- $patch: delete
9+
name: vjob.kb.io

setup.k8s-v1.25/training-operator/kustomization.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ namespace: mlbatch-system
55
resources:
66
- "https://github.com/kubeflow/training-operator/manifests/base?ref=v1.7.0"
77

8+
labels:
9+
- pairs:
10+
app.kubernetes.io/name: training-operator
11+
app.kubernetes.io/component: controller
12+
includeSelectors: true
13+
814
images:
915
- name: kubeflow/training-operator
1016
newTag: "v1-855e096"

0 commit comments

Comments
 (0)