Skip to content

Commit 76c81e4

Browse files
authored
Merge branch 'kubeflow:master' into webhook
2 parents 58710dc + eb8af4d commit 76c81e4

File tree

346 files changed

+39062
-24662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

346 files changed

+39062
-24662
lines changed

.flake8

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
max-line-length = 100
3+
# E203 is ignored to avoid conflicts with Black's formatting, as it's not PEP 8 compliant
4+
extend-ignore = W503, E203

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Bug Report
2+
description: Tell us about a problem you are experiencing with Katib
3+
labels: ["kind/bug", "lifecycle/needs-triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this Katib bug report!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: What happened?
13+
description: |
14+
Please provide as much info as possible. Not doing so may result in your bug not being
15+
addressed in a timely manner.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: expected
20+
attributes:
21+
label: What did you expect to happen?
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: environment
26+
attributes:
27+
label: Environment
28+
value: |
29+
Kubernetes version:
30+
```bash
31+
$ kubectl version
32+
33+
```
34+
Katib controller version:
35+
```bash
36+
$ kubectl get pods -n kubeflow -l katib.kubeflow.org/component=controller -o jsonpath="{.items[*].spec.containers[*].image}"
37+
38+
```
39+
Katib Python SDK version:
40+
```bash
41+
$ pip show kubeflow-katib
42+
43+
```
44+
validations:
45+
required: true
46+
- type: input
47+
id: votes
48+
attributes:
49+
label: Impacted by this bug?
50+
value: Give it a 👍 We prioritize the issues with most 👍

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22

33
contact_links:
44
- name: Katib Documentation
55
url: https://www.kubeflow.org/docs/components/katib/
66
about: Much help can be found in the docs
7-
- name: AutoML Slack Channel
8-
url: https://kubeflow.slack.com/archives/C018PMV53NW
9-
about: Ask the Katib community on Slack
7+
- name: Kubeflow Katib Slack Channel
8+
url: https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels
9+
about: Ask the Katib community on CNCF Slack
10+
- name: Kubeflow Katib Community Meeting
11+
url: https://bit.ly/2PWVCkV
12+
about: Join the Kubeflow AutoML working group meeting

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request
2+
description: Suggest an idea for Katib
3+
labels: ["kind/feature", "lifecycle/needs-triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this Katib feature request!
9+
- type: textarea
10+
id: feature
11+
attributes:
12+
label: What you would like to be added?
13+
description: |
14+
A clear and concise description of what you want to add to Katib.
15+
Please consider to write Katib enhancement proposal if it is a large feature request.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: rationale
20+
attributes:
21+
label: Why is this needed?
22+
validations:
23+
required: true
24+
- type: input
25+
id: votes
26+
attributes:
27+
label: Love this feature?
28+
value: Give it a 👍 We prioritize the features with most 👍

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Thanks for sending a pull request! Here are some tips for you:
22
1. If this is your first time, check our contributor guidelines https://www.kubeflow.org/docs/about/contributing
3-
2. To know more about Katib components, check developer guide https://github.com/kubeflow/katib/blob/master/docs/developer-guide.md
3+
2. To know more about Katib components, check developer guide https://github.com/kubeflow/katib/blob/master/CONTRIBUTING.md
44
3. If you want *faster* PR reviews, check how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews
55
-->
66

.github/workflows/build-and-publish-images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
- name: Docker Login
3131
# Trigger workflow only for kubeflow/katib repository with specific branch (master, release-.*) or tag (v.*).
3232
if: >-
3333
github.repository == 'kubeflow/katib' &&
3434
(github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release-') || startsWith(github.ref, 'refs/tags/v'))
35-
uses: docker/login-action@v2
35+
uses: docker/login-action@v3
3636
with:
3737
username: ${{ secrets.DOCKERHUB_USERNAME }}
3838
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/e2e-test-darts-cifar10.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
timeout-minutes: 120
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup Test Env
2121
uses: ./.github/workflows/template-setup-e2e-test
2222
with:
2323
kubernetes-version: ${{ matrix.kubernetes-version }}
24-
python-version: "3.7"
24+
python-version: "3.11"
2525

2626
- name: Run e2e test with ${{ matrix.experiments }} experiments
2727
uses: ./.github/workflows/template-e2e-test
@@ -33,6 +33,6 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
kubernetes-version: ["v1.25.12", "v1.26.6", "v1.27.3"]
36+
kubernetes-version: ["v1.28.7", "v1.29.2", "v1.30.7"]
3737
# Comma Delimited
3838
experiments: ["darts-cpu"]

.github/workflows/e2e-test-enas-cifar10.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 120
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup Test Env
2121
uses: ./.github/workflows/template-setup-e2e-test
@@ -33,6 +33,6 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
kubernetes-version: ["v1.25.12", "v1.26.6", "v1.27.3"]
36+
kubernetes-version: ["v1.28.7", "v1.29.2", "v1.30.7"]
3737
# Comma Delimited
3838
experiments: ["enas-cpu"]

0 commit comments

Comments
 (0)