kyma-project / btp-manager

BTP Manager installs SAP BTP Service Operator as a Kyma module
Apache License 2.0
6 stars 16 forks source link

Loading Service Instances in BTP Manager UI Backend - API #746

Closed ralikio closed 2 months ago

ralikio commented 3 months ago

Description

The following PR connects methods previously introduced in https://github.com/kyma-project/btp-manager/pull/742 and exposes real data on endpoints /api/service-instances.

Changes proposed in this pull request:

442

github-actions[bot] commented 3 months ago

Add one of following labels

- kind/feature -> Use it when you want to submit a new feature

- kind/enhancement -> Use it when you modify or improve an existing feature

- kind/bug -> Use it when you fix a bug

ralikio commented 3 months ago

Current response from the API:

{
    "numItems": 2,
    "items": [
        {
            "name": "auditlog-management",
            "id": "4e27f92d-872a-4410-9076-37fe4ac75d4c",
            "description": ""
        },
        {
            "name": "auditlog-management-2",
            "id": "9a04747b-f513-4150-97a6-b910cf9ba493",
            "description": ""
        }
    ]
}

I want to fill the rest later on.

ralikio commented 3 months ago

API changes were picked up by UI: image

szwedm commented 2 months ago

Hey @ralikio, I would like to discuss the introduced changes, applying on hold label until then.

szwedm commented 2 months ago

/hold

ralikio commented 2 months ago

List Instances were implemented in https://github.com/kyma-project/btp-manager/pull/735. We decided to merge tests that has been created on the ralikio:features/service-instances-api branch.