diff --git a/charmcraft.yaml b/charmcraft.yaml index 611e278..7e51e43 100644 --- a/charmcraft.yaml +++ b/charmcraft.yaml @@ -81,10 +81,10 @@ config: # Your workload’s containers. containers: airbyte-webapp: - resource: airbyte-ui + resource: airbyte-ui-image # This field populates the Resources tab on Charmhub. resources: - airbyte-ui: + airbyte-ui-image: type: oci-image description: OCI image for Airbyte web UI diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index c7d23fc..07d9756 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -46,7 +46,7 @@ async def charm_fixture(request: FixtureRequest, ops_test: OpsTest) -> str | Pat @pytest_asyncio.fixture(name="deploy", scope="module") async def deploy(ops_test: OpsTest, charm: str, charm_image: str): """Test the app is up and running.""" - resources = {"airbyte-webapp": charm_image} + resources = {"airbyte-ui-image": charm_image} asyncio.gather( ops_test.model.deploy(charm, resources=resources, application_name=APP_NAME_AIRBYTE_UI),