Skip to content
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
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ deploy-on-openshift: oc
-p MIGRATION_PLANNER_URL=http://planner-agent-$${openshift_project}.apps.$${openshift_base_url}$(SERVICE_API_PATH) \
-p MIGRATION_PLANNER_UI_URL=http://planner-ui-$${openshift_project}.apps.$${openshift_base_url} \
-p MIGRATION_PLANNER_IMAGE_URL=http://planner-image-$${openshift_project}.apps.$${openshift_base_url}$(SERVICE_API_PATH) \
-p MIGRATION_PLANNER_ADMIN_GROUP_FILE=$(MIGRATION_PLANNER_ADMIN_GROUP_FILE) \
Comment thread
coderabbitai[bot] marked this conversation as resolved.
| oc apply -f -; \
oc expose service migration-planner-agent --name planner-agent; \
oc expose service migration-planner-image --name planner-image; \
Expand Down Expand Up @@ -276,6 +277,7 @@ deploy-on-kind: oc
-p PERSISTENT_DISK_DEVICE=$(PERSISTENT_DISK_DEVICE) \
-p INSECURE_REGISTRY=$(INSECURE_REGISTRY) \
-p MIGRATION_PLANNER_AUTH=$(MIGRATION_PLANNER_AUTH) \
-p MIGRATION_PLANNER_ADMIN_GROUP_FILE=$(MIGRATION_PLANNER_ADMIN_GROUP_FILE) \
-p RHCOS_PASSWORD=${RHCOS_PASSWORD} \
| oc apply -n "${MIGRATION_PLANNER_NAMESPACE}" -f -; \
echo "*** OpenShift Migration Advisor has been deployed successfully on Kind ***"
Expand Down
54 changes: 54 additions & 0 deletions api/v1alpha1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal error
content:
Expand Down Expand Up @@ -1275,6 +1281,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal error
content:
Expand Down Expand Up @@ -1308,6 +1320,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1358,6 +1376,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1396,6 +1420,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1435,6 +1465,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1485,6 +1521,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1548,6 +1590,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not Found
content:
Expand Down Expand Up @@ -1591,6 +1639,12 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/Error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"400":
description: Bad Request
content:
Expand Down
Loading
Loading