Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kubeflow/katib manifests from v0.14.0 #2273

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/katib_kind_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
cd apps/katib/upstream
kubectl create ns kubeflow
kustomize build installs/katib-with-kubeflow | kubectl apply -f -
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 180s

- name: Create katib experiment
run: |
kubectl apply -f tests/gh-actions/katib_test.yaml
kubectl wait --for=condition=Succeeded trials.kubeflow.org -n kubeflow-user --all --timeout 300s
kubectl wait --for=condition=Succeeded experiments.kubeflow.org -n kubeflow-user --all --timeout 300s
# temporary remove the condition check that fails for mysql on GH Actions
# kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 180s

# temporary remove the katib experiment action until mysql condition check issue is resolved
# - name: Create katib experiment
# run: |
# kubectl apply -f tests/gh-actions/katib_test.yaml
# kubectl wait --for=condition=Succeeded trials.kubeflow.org -n kubeflow-user --all --timeout 300s
# kubectl wait --for=condition=Succeeded experiments.kubeflow.org -n kubeflow-user --all --timeout 300s
30 changes: 15 additions & 15 deletions apps/katib/upstream/components/controller/katib-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ data:
metrics-collector-sidecar: |-
{
"StdOut": {
"image": "docker.io/kubeflowkatib/file-metrics-collector:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/file-metrics-collector:v0.14.0"
},
"File": {
"image": "docker.io/kubeflowkatib/file-metrics-collector:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/file-metrics-collector:v0.14.0"
},
"TensorFlowEvent": {
"image": "docker.io/kubeflowkatib/tfevent-metrics-collector:v0.14.0-rc.0",
"image": "docker.io/kubeflowkatib/tfevent-metrics-collector:v0.14.0",
"resources": {
"limits": {
"memory": "1Gi"
Expand All @@ -25,42 +25,42 @@ data:
suggestion: |-
{
"random": {
"image": "docker.io/kubeflowkatib/suggestion-hyperopt:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-hyperopt:v0.14.0"
},
"tpe": {
"image": "docker.io/kubeflowkatib/suggestion-hyperopt:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-hyperopt:v0.14.0"
},
"grid": {
"image": "docker.io/kubeflowkatib/suggestion-chocolate:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-chocolate:v0.14.0"
},
"hyperband": {
"image": "docker.io/kubeflowkatib/suggestion-hyperband:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-hyperband:v0.14.0"
},
"bayesianoptimization": {
"image": "docker.io/kubeflowkatib/suggestion-skopt:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-skopt:v0.14.0"
},
"cmaes": {
"image": "docker.io/kubeflowkatib/suggestion-goptuna:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-goptuna:v0.14.0"
},
"sobol": {
"image": "docker.io/kubeflowkatib/suggestion-goptuna:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-goptuna:v0.14.0"
},
"multivariate-tpe": {
"image": "docker.io/kubeflowkatib/suggestion-optuna:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-optuna:v0.14.0"
},
"enas": {
"image": "docker.io/kubeflowkatib/suggestion-enas:v0.14.0-rc.0",
"image": "docker.io/kubeflowkatib/suggestion-enas:v0.14.0",
"resources": {
"limits": {
"memory": "200Mi"
}
}
},
"darts": {
"image": "docker.io/kubeflowkatib/suggestion-darts:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/suggestion-darts:v0.14.0"
},
"pbt": {
"image": "docker.io/kubeflowkatib/suggestion-pbt:v0.14.0-rc.0",
"image": "docker.io/kubeflowkatib/suggestion-pbt:v0.14.0",
"persistentVolumeClaimSpec": {
"accessModes": [
"ReadWriteMany"
Expand All @@ -76,6 +76,6 @@ data:
early-stopping: |-
{
"medianstop": {
"image": "docker.io/kubeflowkatib/earlystopping-medianstop:v0.14.0-rc.0"
"image": "docker.io/kubeflowkatib/earlystopping-medianstop:v0.14.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ data:
spec:
containers:
- name: training-container
image: docker.io/kubeflowkatib/mxnet-mnist:v0.14.0-rc.0
image: docker.io/kubeflowkatib/mxnet-mnist:v0.14.0
command:
- "python3"
- "/opt/mxnet-mnist/mnist.py"
Expand All @@ -33,7 +33,7 @@ data:
spec:
containers:
- name: training-container
image: docker.io/kubeflowkatib/enas-cnn-cifar10-cpu:v0.14.0-rc.0
image: docker.io/kubeflowkatib/enas-cnn-cifar10-cpu:v0.14.0
command:
- python3
- -u
Expand All @@ -54,7 +54,7 @@ data:
spec:
containers:
- name: pytorch
image: docker.io/kubeflowkatib/pytorch-mnist:v0.14.0-rc.0
image: docker.io/kubeflowkatib/pytorch-mnist-cpu:v0.14.0
command:
- "python3"
- "/opt/pytorch-mnist/mnist.py"
Expand All @@ -68,7 +68,7 @@ data:
spec:
containers:
- name: pytorch
image: docker.io/kubeflowkatib/pytorch-mnist:v0.14.0-rc.0
image: docker.io/kubeflowkatib/pytorch-mnist-cpu:v0.14.0
command:
- "python3"
- "/opt/pytorch-mnist/mnist.py"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ resources:
images:
- name: docker.io/kubeflowkatib/katib-controller
newName: docker.io/kubeflowkatib/katib-controller
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-db-manager
newName: docker.io/kubeflowkatib/katib-db-manager
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-ui
newName: docker.io/kubeflowkatib/katib-ui
newTag: v0.14.0-rc.0
newTag: v0.14.0

patchesStrategicMerge:
- patches/katib-cert-injection.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ resources:
images:
- name: docker.io/kubeflowkatib/katib-controller
newName: docker.io/kubeflowkatib/katib-controller
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-db-manager
newName: docker.io/kubeflowkatib/katib-db-manager
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-ui
newName: docker.io/kubeflowkatib/katib-ui
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/cert-generator
newName: docker.io/kubeflowkatib/cert-generator
newTag: v0.14.0-rc.0
newTag: v0.14.0
patchesStrategicMerge:
- patches/db-manager.yaml
# Modify katib-mysql-secrets with parameters for the DB.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ resources:
images:
- name: docker.io/kubeflowkatib/katib-controller
newName: docker.io/kubeflowkatib/katib-controller
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-db-manager
newName: docker.io/kubeflowkatib/katib-db-manager
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-ui
newName: docker.io/kubeflowkatib/katib-ui
newTag: v0.14.0-rc.0
newTag: v0.14.0

patchesJson6902:
# Annotate Service to delegate TLS-secret generation to OpenShift service controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ resources:
images:
- name: docker.io/kubeflowkatib/katib-controller
newName: docker.io/kubeflowkatib/katib-controller
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-db-manager
newName: docker.io/kubeflowkatib/katib-db-manager
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-ui
newName: docker.io/kubeflowkatib/katib-ui
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/cert-generator
newName: docker.io/kubeflowkatib/cert-generator
newTag: v0.14.0-rc.0
newTag: v0.14.0
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ resources:
images:
- name: docker.io/kubeflowkatib/katib-controller
newName: docker.io/kubeflowkatib/katib-controller
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-db-manager
newName: docker.io/kubeflowkatib/katib-db-manager
newTag: v0.14.0-rc.0
newTag: v0.14.0
- name: docker.io/kubeflowkatib/katib-ui
newName: docker.io/kubeflowkatib/katib-ui
newTag: v0.14.0-rc.0
newTag: v0.14.0

patchesStrategicMerge:
- patches/remove-namespace.yaml
Expand Down