From 0672f63b5f7cd508861bc656e06d5a4cb8efcec8 Mon Sep 17 00:00:00 2001 From: Liam Young Date: Tue, 4 Apr 2023 13:05:02 +0000 Subject: [PATCH] Add CMR info to README --- charms/openstack-hypervisor/README.md | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/charms/openstack-hypervisor/README.md b/charms/openstack-hypervisor/README.md index 5bbf7166..08e5a70e 100644 --- a/charms/openstack-hypervisor/README.md +++ b/charms/openstack-hypervisor/README.md @@ -1,16 +1,18 @@ # openstack-hypervisor -Charmhub package name: operator-template -More information: https://charmhub.io/openstack-hypervisor +This charm deploys the openstack-hypervisor snap. -Describe your charm in one or two sentences. +It is expected to be related to the control plane via cross model relations. To +achieve this assuming the control plane is in a model called *k8s*. -## Other resources +``` +juju offer k8s.rabbitmq-k8s:amqp +juju offer k8s.keystone:identity-credentials +juju offer k8s.certificate-authority:certificates +juju offer k8s.ovn-relay:ovsdb-cms-relay - - -- [Read more](https://example.com) - -- [Contributing](CONTRIBUTING.md) - -- See the [Juju SDK documentation](https://juju.is/docs/sdk) for more information about developing and improving charms. +juju relate -m hypervisor openstack-hypervisor admin/k8s.rabbitmq-k8s +juju relate -m hypervisor openstack-hypervisor admin/k8s.keystone +juju relate -m hypervisor openstack-hypervisor admin/k8s.certificate-authority +juju relate -m hypervisor openstack-hypervisor admin/k8s.ovn-relay +```