Charm Store Policy
This document serves to record the policies around charms included in the charm store, and the management of said charm collection. Charms in the store are peer reviewed by the community and are considered ready for consumption. These charms are marked as reviewed in the GUI and must follow these quality guidelines in ordered to be considered for the Store. These charms must:
- Must follow the spirit of the Ubuntu Philosophy.
- Must serve a useful purpose and have well defined behavior.
- Must also be valid for the charm format defined in Juju's documentation.
- Must verify that any software installed or utilized is verified as coming from the intended source. Any software installed from the Ubuntu archive satisfies this due to the apt sources including cryptographic signing information.
- Must be entirely self contained or depend only on reliable external services.
- Must include a full description of what the software does in the metadata.
- Must provide a means to protect users from known security vulnerabilities in a way consistent with best practices as defined by either Ubuntu policies or upstream documentation. Basically this means there must be instructions on how to apply updates if you use software not from Ubuntu.
- Must pass "charm proof" with no errors (lines prefixed with E:), remember this step!
- Must have a maintainer email address in metadata.yaml attached to a team or individual who are responsive to contact regarding the charm.
- Must include a license. Call the file 'copyright' and make sure all files' licenses are specified clearly.
- Must be under a Free license.
- Must have hooks that are idempotent.
- Must not run any network services using default passwords.
- Must call Juju API tools (relation-*, unit-*, config-*, etc) without a hard coded path. Should default to use software that is included in the Ubuntu archive, however we encourage that charm authors have a config options for allowing users to deploy from newer upstream releases, or even right from VCS if it's useful to users.
- Should not use anything infrastructure-provider specific (i.e. querying EC2 metadata service) symlinks must be self contained within a charm.
- Should make use of AppArmor to increase security
The charm store referred to in this document is the collection of Juju charms hosted at https://launchpad.net/charms.
Charm Metadata
metadata.yaml
This file is an important component of a charm.
Check out the MySQL metadata.yaml as an example.
config.yaml
Any de-facto config options must be kept at least until the next major charm series release. Removed config options should be deprecated first by noting that they are deprecated, and why, in their description. Instructions for converting values must be added to README as well.
README.md
Charms that want to display instructions to users can do so in either plain text by including a file called README. If the author would like to use markdown, the file should be called README.md, and if the author would like to use restructured text, the file should be called README.rst. Only one of these files can be included in the charm. We recommend Markdown due to its popularity and tooling.
Remember that the README is used by the GUI and website as the default "front page" of the charm, so remember that it is user facing and should include easy to read instructions for deployment.
Interfaces
Charms should only implement a new interface when existing interfaces are insufficient to achieve the goal of the charm. Interfaces that have an official requires/provides in the charm store cannot be changed by adding required fields or removing existing fields. New optional fields can be added at any time.
The charm store series denotes the OS release that the charms which are contained within it are intended to run on.
State
Each series can be in one of these states:
- Experimental - Charms can be added, but are in a state of flux.
- Active - The Charm store is actively accepting new charms and changes.
- Frozen - Only critical fixes are accepted.
- EOL - The OS version is not supported by the vendor, and thus, neither are the charms.
Experimental
Experimental series charms should adhere to the charm policy except that interfaces are never made 'de-facto' in an experimental series.
- Active - When a series is active, all changes are subject to the de-facto rules above.
- Frozen - The charmers team on launchpad has discretion when a series is frozen as to whether or not a change should be accepted.
- EOL - No changes will be accepted except those which help users who need to migrate to a supported series.
- Process - Charm store releases will be moved from Active to Frozen periodically to allow de-facto changes to settle and allow testing of infrastructure. New releases of target OS's will be reflected in the charm store as an experimental series. There can be multiple Active series at one time. Maintainers can choose whether or not to support their charm in all of the Active series, as long as the charm is maintained in at least one Active series.