Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rock name #13

Merged
merged 4 commits into from
Oct 17, 2024
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
4 changes: 0 additions & 4 deletions airbyte_ui_rock/.trivyignore

This file was deleted.

4 changes: 2 additions & 2 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ config:
# Your workload’s containers.
containers:
airbyte-webapp:
resource: airbyte-webapp
resource: airbyte-ui-image

# This field populates the Resources tab on Charmhub.
resources:
airbyte-webapp:
airbyte-ui-image:
type: oci-image
description: OCI image for Airbyte web UI
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
Loading