Rename ovsdb library

Place under the ovn_central_k8s namespace rather than the old
sunbeam POC name.

Change-Id: I682d19466d0589221a5ba173d9693f6c102cc94b
This commit is contained in:
James Page 2022-10-17 16:23:23 +01:00
parent 68808176e7
commit da8f128c58
2 changed files with 4 additions and 3 deletions
charms/ovn-central-k8s
lib/charms/ovn_central_k8s/v0
src

@ -30,14 +30,14 @@ from ops.framework import (
)
# The unique Charmhub library identifier, never change it
LIBID = "19e5a5857acd4a94a4a759d173d18232"
LIBID = "114b7bb1970445daa61650e451f9da62"
# Increment this major API version when introducing breaking changes
LIBAPI = 0
# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 2
LIBPATCH = 1
# TODO: add your code here! Happy coding!
@ -202,3 +202,4 @@ class OVSDBCMSProvides(Object):
for k, v in settings.items():
relation.data[self.model.unit][k] = v

@ -21,7 +21,7 @@ import ops_sunbeam.ovn.container_handlers as ovn_chandlers
import ops_sunbeam.ovn.config_contexts as ovn_ctxts
import ops_sunbeam.ovn.relation_handlers as ovn_rhandlers
import charms.sunbeam_ovn_central_operator.v0.ovsdb as ovsdb
import charms.ovn_central_k8s.v0.ovsdb as ovsdb
from charms.observability_libs.v0.kubernetes_service_patch \
import KubernetesServicePatch