Skip to main content

The Python library behind great charms

Project description

The Operator Framework

The Operator Framework provides a simple, lightweight, and powerful way of writing Juju charms, the best way to encapsulate operational experience in code.

The framework will help you to:

  • model the integration of your services
  • manage the lifecycle of your application
  • create reusable and scalable components
  • keep your code simple and readable

Getting Started

Charms written using the operator framework are just Python code. The intention is for it to feel very natural for somebody used to coding in Python, and reasonably easy to pick up for somebody who might be a domain expert but not necessarily a pythonista themselves.

The dependencies of the operator framework are kept as minimal as possible; currently that's Python 3.5 or greater, and PyYAML (both are included by default in Ubuntu's cloud images from 16.04 on).

A Quick Introduction

Operator framework charms are just Python code. The entry point to your charm is a particular Python file. It could be anything that makes sense to your project, but let's assume this is src/charm.py. This file must be executable (and it must have the appropriate shebang line).

You need the usual metadata.yaml and (probably) config.yaml files, and a requirements.txt for any Python dependencies. In other words, your project might look like this:

my-charm
├── config.yaml
├── metadata.yaml
├── requirements.txt
└── src/
    └── charm.py

src/charm.py here is the entry point to your charm code. At a minimum, it needs to define a subclass of CharmBase and pass that into the framework's main function:

from ops.charm import CharmBase
from ops.main import main

class MyCharm(CharmBase):
    def __init__(self, *args):
        super().__init__(*args)
        self.framework.observe(self.on.start, self.on_start)

    def on_start(self, event):
        # Handle the start event here.

if __name__ == "__main__":
    main(MyCharm)

That should be enough for you to be able to run

$ charmcraft build
Done, charm left in 'my-charm.charm'
$ juju deploy my-charm.charm

🛈 More information on charmcraft can also be found on its github page.

Happy charming!

Testing your charms

The operator framework provides a testing harness, so that you can test that your charm does the right thing when presented with different scenarios, without having to have a full deployment to do so. pydoc3 ops.testing has the details for that, including this example:

harness = Harness(MyCharm)
# Do initial setup here
relation_id = harness.add_relation('db', 'postgresql')
# Now instantiate the charm to see events as the model changes
harness.begin()
harness.add_relation_unit(relation_id, 'postgresql/0')
harness.update_relation_data(relation_id, 'postgresql/0', {'key': 'val'})
# Check that charm has properly handled the relation_joined event for postgresql/0
self.assertEqual(harness.charm. ...)

Talk to us

If you need help, have ideas, or would just like to chat with us, reach out on IRC: we're in #smooth-operator on freenode (or try the webchat).

We also pay attention to Juju's discourse, but currently we don't actively post there outside of our little corner of the docs; most discussion at this stage is on IRC.

Operator Framework development

If you want to work in the framework itself you will need Python >= 3.5 and the dependencies declared in requirements-dev.txt installed in your system. Or you can use a virtualenv:

virtualenv --python=python3 env
source env/bin/activate
pip install -r requirements-dev.txt

Then you can try ./run_tests, it should all go green.

If you want to build the documentation you'll need the requirements from docs/requirements.txt, or in your virtualenv

pip install -r docs/requirements.txt

and then you can run ./build_docs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ops-0.6.0.tar.gz (81.8 kB view details)

Uploaded Source

Built Distribution

ops-0.6.0-py3-none-any.whl (51.2 kB view details)

Uploaded Python 3

File details

Details for the file ops-0.6.0.tar.gz.

File metadata

  • Download URL: ops-0.6.0.tar.gz
  • Upload date:
  • Size: 81.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.2

File hashes

Hashes for ops-0.6.0.tar.gz
Algorithm Hash digest
SHA256 942dd723550afe19b272a0a8df2fab969c78fc4a8e7aeac728f13b70bec8068d
MD5 9e7bd1e8050e01e429b810b1514d7da6
BLAKE2b-256 81f7fe365ae3a6f6062a975112497aa59ac6edbf26616b382a824cba9b20c492

See more details on using hashes here.

File details

Details for the file ops-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: ops-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 51.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.2

File hashes

Hashes for ops-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 19951edc409786967fb41a4cf314d521d1da1e4359b797c3196b17b3ee1e198d
MD5 e7768833fe058e8d030f2467b8e02947
BLAKE2b-256 9ca6eb5875f28725705d65be6e88f0243d54037838f3e2180854b35ed5492f17

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page