Skip to content

Commit 375e951

Browse files
Yehudit Keridoyehudit1987
authored andcommitted
Update images paths from ghcr.io/kubeflow/kubeflow/* to ghcr.io/kubeflow/dashboard/*
Signed-off-by: Yehudit Kerido <[email protected]>
1 parent d4e7704 commit 375e951

Some content is hidden

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

41 files changed

+247
-122
lines changed

.github/workflows/central_dashboard_angular_integration_test.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
cancel-in-progress: true
1717

1818
env:
19-
DASHBOARD_IMG: ghcr.io/kubeflow/dashboard/centraldashboard-angular
19+
DASHBOARD_IMG: ghcr.io/kubeflow/dashboard/dashboard-angular
2020
KFAM_IMG: ghcr.io/kubeflow/dashboard/kfam
2121
PROFILE_CONTROLLER_IMG: ghcr.io/kubeflow/dashboard/profile-controller
2222
TAG: integration-test
@@ -62,8 +62,8 @@ jobs:
6262
kind load docker-image "${PROFILE_CONTROLLER_IMG}:${TAG}"
6363
cd config
6464
kustomize build overlays/kubeflow \
65-
| sed "s|ghcr.io/kubeflow/kubeflow/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
66-
| sed "s|ghcr.io/kubeflow/kubeflow/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
65+
| sed "s|ghcr.io/kubeflow/dashboard/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
66+
| sed "s|ghcr.io/kubeflow/dashboard/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
6767
| kubectl apply -f -
6868
kubectl wait --for=condition=Available deployment -n kubeflow profiles-deployment --timeout=300s
6969
kubectl wait --for=condition=Ready pods -n kubeflow -l kustomize.component=profiles --timeout=300s
@@ -77,8 +77,8 @@ jobs:
7777
"${TAG}" \
7878
"manifests" \
7979
"overlays/kserve"
80-
kubectl wait --for=condition=Ready pods -n kubeflow -l app=centraldashboard-angular --timeout=300s
81-
kubectl wait --for=condition=Available deployment -n kubeflow centraldashboard-angular --timeout=300s
80+
kubectl wait --for=condition=Ready pods -n kubeflow -l app=dashboard-angular --timeout=300s
81+
kubectl wait --for=condition=Available deployment -n kubeflow dashboard-angular --timeout=300s
8282
8383
- name: Create Test Profile for Dashboard Testing
8484
run: |
@@ -110,15 +110,15 @@ jobs:
110110
111111
- name: Validate Service
112112
run: |
113-
./testing/gh-actions/test_service.sh validate-service centraldashboard-angular kubeflow
113+
./testing/gh-actions/test_service.sh validate-service dashboard-angular kubeflow
114114
115115
- name: Start Port Forward for Dashboard Testing
116116
run: |
117-
./testing/gh-actions/test_service.sh port-forward centraldashboard-angular kubeflow 8080 80
117+
./testing/gh-actions/test_service.sh port-forward dashboard-angular kubeflow 8080 80
118118
119119
- name: Test Dashboard Health
120120
run: |
121-
./testing/gh-actions/test_service.sh test-health centraldashboard-angular kubeflow 8080
121+
./testing/gh-actions/test_service.sh test-health dashboard-angular kubeflow 8080
122122
123123
- name: Test Dashboard Web Interface
124124
run: |
@@ -133,28 +133,28 @@ jobs:
133133
exit 1
134134
fi
135135
136-
kubectl get service centraldashboard-angular -n kubeflow
137-
kubectl get pods -n kubeflow -l app=centraldashboard-angular
136+
kubectl get service dashboard-angular -n kubeflow
137+
kubectl get pods -n kubeflow -l app=dashboard-angular
138138
139139
- name: Test Dashboard Performance
140140
run: |
141-
./testing/gh-actions/test_service.sh performance-test centraldashboard-angular kubeflow 8080 80 8
141+
./testing/gh-actions/test_service.sh performance-test dashboard-angular kubeflow 8080 80 8
142142
143143
- name: Test Dashboard Metrics
144144
run: |
145-
./testing/gh-actions/test_service.sh test-metrics centraldashboard-angular kubeflow 8080
145+
./testing/gh-actions/test_service.sh test-metrics dashboard-angular kubeflow 8080
146146
147147
- name: Check Dashboard Logs
148148
run: |
149-
./testing/gh-actions/test_service.sh check-logs centraldashboard-angular kubeflow 50
149+
./testing/gh-actions/test_service.sh check-logs dashboard-angular kubeflow 50
150150
151151
- name: Check for Errors in Logs
152152
run: |
153-
./testing/gh-actions/test_service.sh check-errors centraldashboard-angular kubeflow
153+
./testing/gh-actions/test_service.sh check-errors dashboard-angular kubeflow
154154
155155
- name: Stop Port Forward
156156
run: |
157-
./testing/gh-actions/test_service.sh stop-port-forward centraldashboard-angular kubeflow 8080
157+
./testing/gh-actions/test_service.sh stop-port-forward dashboard-angular kubeflow 8080
158158
159159
- name: Cleanup Test Resources
160160
run: |

.github/workflows/central_dashboard_integration_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262
kind load docker-image "${PROFILE_CONTROLLER_IMG}:${TAG}"
6363
cd config
6464
kustomize build overlays/kubeflow \
65-
| sed "s|ghcr.io/kubeflow/kubeflow/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
66-
| sed "s|ghcr.io/kubeflow/kubeflow/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
65+
| sed "s|ghcr.io/kubeflow/dashboard/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
66+
| sed "s|ghcr.io/kubeflow/dashboard/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
6767
| kubectl apply -f -
6868
kubectl wait --for=condition=Available deployment -n kubeflow profiles-deployment --timeout=300s
6969
kubectl wait --for=condition=Ready pods -n kubeflow -l kustomize.component=profiles --timeout=300s

.github/workflows/central_dashboard_multi_arch_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
IMG: ghcr.io/kubeflow/kubeflow/central-dashboard
17+
IMG: ghcr.io/kubeflow/dashboard/central-dashboard
1818

1919
jobs:
2020
build:

.github/workflows/central_dashboard_oci_publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- .github/workflows/central_dashboard_oci_publish.yaml
1111

1212
env:
13-
IMG: ghcr.io/kubeflow/kubeflow/central-dashboard
13+
IMG: ghcr.io/kubeflow/dashboard/central-dashboard
1414
ARCH: linux/amd64,linux/ppc64le,linux/arm64/v8
1515

1616
jobs:
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Build & Publish dashboard-Angular Docker image
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- v*-branch
7+
paths:
8+
- components/dashboard-angular/**
9+
- releasing/version/VERSION
10+
11+
env:
12+
IMG: ghcr.io/kubeflow/dashboard/dashboard-angular
13+
14+
jobs:
15+
push_to_registry:
16+
name: Build & Push image to GHCR
17+
runs-on: ubuntu-22.04
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
24+
- uses: dorny/paths-filter@v3
25+
id: filter
26+
with:
27+
base: ${{ github.ref }}
28+
filters: |
29+
version:
30+
- 'releasing/version/VERSION'
31+
32+
- name: Login to GHCR
33+
uses: docker/login-action@v3
34+
with:
35+
registry: ghcr.io
36+
username: ${{ github.actor }}
37+
password: ${{ secrets.GITHUB_TOKEN }}
38+
39+
- name: Run dashboard-Angular build/push
40+
run: |
41+
cd components/dashboard-angular
42+
make docker-build docker-push
43+
44+
- name: Run dashboard-Angular build/push latest
45+
if: github.ref == 'refs/heads/main'
46+
run: |
47+
export TAG=latest
48+
cd components/dashboard-angular
49+
make docker-build docker-push
50+
51+
- name: Run dashboard-Angular build/push on Version change
52+
id: version
53+
if: steps.filter.outputs.version == 'true'
54+
run: |
55+
export TAG=$(cat releasing/version/VERSION)
56+
cd components/dashboard-angular
57+
make docker-build docker-push

.github/workflows/end_to_end_integration_test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ concurrency:
1818
cancel-in-progress: true
1919

2020
env:
21-
CENTRALDASHBOARD_IMG: ghcr.io/kubeflow/dashboard/centraldashboard
22-
CENTRALDASHBOARD_ANGULAR_IMG: ghcr.io/kubeflow/dashboard/centraldashboard-angular
21+
CENTRALDASHBOARD_IMG: ghcr.io/kubeflow/dashboard/central-dashboard
22+
CENTRALDASHBOARD_ANGULAR_IMG: ghcr.io/kubeflow/dashboard/dashboard-angular
2323
PROFILE_CONTROLLER_IMG: ghcr.io/kubeflow/dashboard/profile-controller
2424
KFAM_IMG: ghcr.io/kubeflow/dashboard/kfam
2525
ADMISSION_WEBHOOK_IMG: ghcr.io/kubeflow/dashboard/poddefaults-webhook
@@ -67,8 +67,8 @@ jobs:
6767
kind load docker-image "${PROFILE_CONTROLLER_IMG}:${TAG}"
6868
cd config
6969
kustomize build overlays/kubeflow \
70-
| sed "s|ghcr.io/kubeflow/kubeflow/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
71-
| sed "s|ghcr.io/kubeflow/kubeflow/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
70+
| sed "s|ghcr.io/kubeflow/dashboard/profile-controller:[a-zA-Z0-9_.-]*|${PROFILE_CONTROLLER_IMG}:${TAG}|g" \
71+
| sed "s|ghcr.io/kubeflow/dashboard/kfam:[a-zA-Z0-9_.-]*|${KFAM_IMG}:${TAG}|g" \
7272
| kubectl apply -f -
7373
kubectl wait --for=condition=Ready pods -n kubeflow -l kustomize.component=profiles --timeout=300s
7474
kubectl wait --for=condition=Available deployment -n kubeflow profiles-deployment --timeout=300s

.github/workflows/kfam_multi_arch_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
IMG: ghcr.io/kubeflow/kubeflow/kfam
17+
IMG: ghcr.io/kubeflow/dashboard/kfam
1818

1919
jobs:
2020
build:

.github/workflows/kfam_oci_publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- releasing/version/VERSION
1010

1111
env:
12-
IMG: ghcr.io/kubeflow/kubeflow/kfam
12+
IMG: ghcr.io/kubeflow/dashboard/kfam
1313
ARCH: linux/amd64,linux/ppc64le,linux/arm64/v8
1414

1515
jobs:

.github/workflows/poddefaults_intergration_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
IMG: ghcr.io/kubeflow/kubeflow/poddefaults-webhook
17+
IMG: ghcr.io/kubeflow/dashboard/poddefaults-webhook
1818
TAG: integration-test
1919

2020
jobs:

.github/workflows/poddefaults_multi_arch_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
IMG: ghcr.io/kubeflow/kubeflow/poddefaults-webhook
17+
IMG: ghcr.io/kubeflow/dashboard/poddefaults-webhook
1818

1919
jobs:
2020
build:

0 commit comments

Comments
 (0)