
Pull ovsdb interface from ovn-central-k8s rather than sunbeam POC charm. Change-Id: I5acb14184caff42c802df62c56278040de05f4a1
17 lines
796 B
Bash
Executable File
17 lines
796 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# NOTE: this only fetches libs for use in unit tests here.
|
|
# Charms that depend on this library should fetch these libs themselves.
|
|
|
|
echo "WARNING: Charm interface libs are excluded from ASO python package."
|
|
charmcraft fetch-lib charms.nginx_ingress_integrator.v0.ingress
|
|
charmcraft fetch-lib charms.data_platform_libs.v0.database_requires
|
|
charmcraft fetch-lib charms.keystone_k8s.v0.identity_service
|
|
charmcraft fetch-lib charms.keystone_k8s.v0.cloud_credentials
|
|
charmcraft fetch-lib charms.rabbitmq_k8s.v0.rabbitmq
|
|
charmcraft fetch-lib charms.ovn_central_k8s.v0.ovsdb
|
|
charmcraft fetch-lib charms.observability_libs.v0.kubernetes_service_patch
|
|
charmcraft fetch-lib charms.traefik_k8s.v1.ingress
|
|
echo "Copying libs to to unit_test dir"
|
|
rsync --recursive --delete lib/ unit_tests/lib/
|