943c9fd988
data_platform_libs.v0.database_requires was deprecated on January 4th, 2023 and has not received updates since then. This change migrates to data_platform_libs.v0.data_interfaces which the preferred way to interact with MySQL. Most notable changes: - User/password in a secret - Keystone test 'test_on_peer_data_changed_with_fernet_keys_and_fernet_secret_different' is no longer mocking secrets to make sure it's using database secrets. Change-Id: Ia1908c0828689458c6ff3fa8d9640c8debfc0a73
19 lines
1.0 KiB
Bash
Executable File
19 lines
1.0 KiB
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.data_interfaces
|
|
charmcraft fetch-lib charms.keystone_k8s.v1.identity_service
|
|
charmcraft fetch-lib charms.keystone_k8s.v0.identity_credentials
|
|
charmcraft fetch-lib charms.keystone_k8s.v0.identity_resource
|
|
charmcraft fetch-lib charms.rabbitmq_k8s.v0.rabbitmq
|
|
charmcraft fetch-lib charms.ovn_central_k8s.v0.ovsdb
|
|
charmcraft fetch-lib charms.traefik_k8s.v2.ingress
|
|
charmcraft fetch-lib charms.ceilometer_k8s.v0.ceilometer_service
|
|
charmcraft fetch-lib charms.cinder_ceph_k8s.v0.ceph_access
|
|
echo "Copying libs to to unit_test dir"
|
|
rsync --recursive --delete lib/ tests/lib/
|