Skip to content

Commit 844b40b

Browse files
droctothorpemprahl
andauthored
fix[frontend]: replace delete with null assignment (#12316)
* fix[frontend]: replace delete with null assignment Signed-off-by: droctothorpe <[email protected]> Co-authored-by: mprahl <[email protected]> * Use the frontend from the PR in CI Signed-off-by: mprahl <[email protected]> * Deprecate first-interaction workflow Signed-off-by: droctothorpe <[email protected]> --------- Signed-off-by: droctothorpe <[email protected]> Signed-off-by: mprahl <[email protected]> Co-authored-by: mprahl <[email protected]>
1 parent 8f2d933 commit 844b40b

File tree

9 files changed

+21
-25
lines changed

9 files changed

+21
-25
lines changed

.github/actions/deploy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656
- name: Load Docker Images
5757
shell: bash
5858
run: |
59-
APPS=("apiserver" "driver" "launcher" "scheduledworkflow" "persistenceagent")
59+
APPS=("apiserver" "driver" "launcher" "scheduledworkflow" "persistenceagent" "frontend")
6060
for app in "${APPS[@]}"; do
6161
docker image load -i ${{ inputs.image_path }}/$app/$app.tar
6262
docker push ${{ inputs.image_registry }}/$app:${{ inputs.image_tag }}

.github/resources/manifests/kubernetes-native/kustomization.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ images:
1414
- name: ghcr.io/kubeflow/kfp-scheduled-workflow-controller
1515
newName: kind-registry:5000/scheduledworkflow
1616
newTag: latest
17+
- name: ghcr.io/kubeflow/kfp-frontend
18+
newName: kind-registry:5000/frontend
19+
newTag: latest
1720

1821
patches:
1922
- path: apiserver-env.yaml

.github/resources/manifests/multiuser/kustomization.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ images:
1414
- name: ghcr.io/kubeflow/kfp-scheduled-workflow-controller
1515
newName: kind-registry:5000/scheduledworkflow
1616
newTag: latest
17+
- name: ghcr.io/kubeflow/kfp-frontend
18+
newName: kind-registry:5000/frontend
19+
newTag: latest
1720

1821
patches:
1922
- path: apiserver-env.yaml

.github/resources/manifests/multiuser/minio/kustomization.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ images:
1414
- name: ghcr.io/kubeflow/kfp-scheduled-workflow-controller
1515
newName: kind-registry:5000/scheduledworkflow
1616
newTag: latest
17+
- name: ghcr.io/kubeflow/kfp-frontend
18+
newName: kind-registry:5000/frontend
19+
newTag: latest
1720

1821
patches:
1922
- path: apiserver-env.yaml

.github/resources/manifests/standalone/kustomization.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ images:
1414
- name: ghcr.io/kubeflow/kfp-scheduled-workflow-controller
1515
newName: kind-registry:5000/scheduledworkflow
1616
newTag: latest
17+
- name: ghcr.io/kubeflow/kfp-frontend
18+
newName: kind-registry:5000/frontend
19+
newTag: latest
1720

1821
patches:
1922
- path: apiserver-env.yaml

.github/resources/manifests/standalone/minio/kustomization.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ images:
1414
- name: ghcr.io/kubeflow/kfp-scheduled-workflow-controller
1515
newName: kind-registry:5000/scheduledworkflow
1616
newTag: latest
17+
- name: ghcr.io/kubeflow/kfp-frontend
18+
newName: kind-registry:5000/frontend
19+
newTag: latest
1720

1821
patches:
1922
- path: apiserver-env.yaml

.github/workflows/first-interaction.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/image-builds-with-cache.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
- image: driver
4343
dockerfile: backend/Dockerfile.driver
4444
context: .
45+
46+
- image: frontend
47+
dockerfile: frontend/Dockerfile
48+
context: .
4549
env:
4650
ARTIFACT_NAME: "${{ matrix.image }}"
4751
ARTIFACTS_PATH: "images_${{ github.sha }}"

frontend/server/src/generated/apisv2beta1/auth/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export const AuthServiceApiFetchParamCreator = function(configuration?: Configur
203203
options.query,
204204
);
205205
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
206-
delete localVarUrlObj.search;
206+
localVarUrlObj.search = null;
207207
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
208208

209209
return {

0 commit comments

Comments
 (0)