# ops-lib-manifests
## Rationale for this library
Most kubernetes projects deploy with manifest files which promote suggested deployment
parameters, but those manifests aren't consistent about which options are requirements
and which options are variable. In some cases the project's distribution uses different
means of indicating a need for replacement.
For example, the following reference from [vsphere-cloud-controller-manager](https://github.com/kubernetes/cloud-provider-vsphere/blob/master/releases/v1.23/vsphere-cloud-controller-manager.yaml#L11-L24)
gives the consumer of this yaml an indication there should be usernames and passwords set
in the Secret object.
```yaml
apiVersion: v1
kind: Secret
metadata:
name: vsphere-cloud-secret
labels:
vsphere-cpi-infra: secret
component: cloud-controller-manager
namespace: kube-system
# NOTE: this is just an example configuration, update with real values based on your environment
stringData:
10.0.0.1.username: "<ENTER_YOUR_VCENTER_USERNAME>"
10.0.0.1.password: "<ENTER_YOUR_VCENTER_PASSWORD>"
1.2.3.4.username: "<ENTER_YOUR_VCENTER_USERNAME>"
1.2.3.4.password: "<ENTER_YOUR_VCENTER_PASSWORD>"
```
Automation tools like a juju charm will need to read these yaml manifest files, manipulate
its content, and deploy those manifests when any of the **configurable** data is changed.
## Supporting Multiple Releases
Likewise, the projects which release reference manifest files, will also release versions
of manifests. It's possible for a charm to load all the supported manifest files into a
folder structure such the charm supports multiple releases. This library supports this
requirements by having the charm store upstream manifest files unchanged in a folder
structure like this:
```
<base_path>
├── version - a file containing the default version
├── manifests - a folder containing all the releases
│ ├── v1.1.10 - a folder matching a configurable version
│ │ ├── manifest-1.yaml - any file with a `.yaml` file type
│ │ └── manifest-2.yaml
│ ├── v1.1.11
│ │ ├── manifest-1.yaml
│ │ └── manifest-2.yaml
│ │ └── manifest-3.yaml
```
Key file-heirarchy requirements
-------------------------------
| | |
| --- | --- |
| **$base_path** | A single charm can support multiple manifest releases
| **version** | A text file indicating to the library which manifest version is the default when the 'release' config is unspecified |
| **manifests** | A folder containing the individual release manifest folders |
| **$release** | A folder containing the yaml files of the specific release |
## Sample Usage
Once your charm includes the above manifest file hierarchy, your charm will need to define the
mutations the library should make to the manifests.
```python
from ops.manifests import Collector, Manifests, ManifestLabel, ConfigRegistry
class ExampleApp(Manifests):
def __init__(self, charm, charm_config):
manipulations = [
ManifestLabel(self),
ConfigRegistry(self),
UpdateSecret(self),
]
super().__init__("example", charm.model, "upstream/example", manipulations)
self.charm_config = charm_config
@property
def config(self) -> Dict:
"""Returns config mapped from charm config and joined relations."""
config = dict(**self.charm_config)
for key, value in dict(**config).items():
if value == "" or value is None:
del config[key] # blank out keys not currently set to something
config["release"] = config.pop("example-release", None)
return config
def is_ready(self, obj, condition) -> bool:
"""Filter conditions by object and condition."""
if (
obj.kind == "Deployment" and
obj.name == "MyDeployment" and
condition.type == "Ignored"
):
return None # ignore this condition
return super().is_ready(obj, condition)
class ExampleCharm(CharmBase):
def __init__(self, *args):
super().__init__(*args)
# collection of ManifestImpls
self.collector = Collector(ExampleApp(self, self.config))
# Register actions callbacks
self.framework.observe(self.on.list_versions_action, self._list_versions)
# Register update status callbacks
self.framework.observe(self.on.update_status, self._update_status)
def _list_versions(self, event):
self.collector.list_versions(event)
def _update_status(self, _):
unready = self.collector.unready
if unready:
self.unit.status = WaitingStatus(", ".join(unready))
else:
self.unit.status = ActiveStatus("Ready")
self.unit.set_workload_version(self.collector.short_version)
self.app.status = ActiveStatus(self.collector.long_version)
```
## Manifests
This class provides the following functions:
1) Integration with lightkube to create/read/update/delete resources into the cluster
2) Provides a means to select a manifest release
3) Loads manifest files from a known file hierarchy specific to a release
4) Manipulates resource objects of a specific release
5) Provides comparisons between the installed resources and expected resources
6) Provides user listing of available releases
### Creating a Manifest Impl
It's expected that the developer create a `Manifest` impl -- a derived class -- that implements
one property -- `config`. This property provides some basic requirements to the
Manifest parent class and gives context for each custom `Manipulation` to act on
relation or config data.
```python
@property
def config(self) -> Dict:
"""Returns config mapped from charm config and joined relations."""
```
#### Expected `config` key mappings
* `release`
* optional `str` which identifies which release of the manifest to choose.
* defaults to `None` which will select the `default_release` if available.
* if `default_release` isn't found, the latest release is chosen.
* `image-registry`
* optional `str` which will be used by the `ConfigRegistry` manipulation
* defaults to `None` which uses the resources built-in registry location
* if specified, will replace the text up to the first `/` with its contents
### Cluster CRUD methods
* `status()`
* queries all in cluster resources associated with the current release which
has a `.status.conditions` attribute.
* `installed_resources()`
* queries all in cluster resources associated with the current release which
is installed.
* `labelled_resources()`
* queries all in cluster resources associated with the charm and manifest in general
which is installed.
* this can be compared with the `resources` property to look for extra resources
installed which are no longer necessary.
* `apply_manifests()`
* applies all resources from the current release into the cluster.
* resources are force applied, overwriting existing resources.
* `apply_resources(*resources)` and `apply_resource(...)`
* applies itemized resources into the cluster.
* resources are force applied, overwriting existing resources.
* `delete_manifests(...)`
* will delete all current release resources from the cluster
* see `delete_resources` for keyword arguments
* `delete_resources(...)`
* delete a specified set of resources from the cluster with options to
seamlessly handle certain failures.
* `delete_resource(...)`
* alias to `delete_resources` for when reading clarity demands only deleting
one resource.
## Collector
This class provides a native collection for operating collectively on
the manifests within a single charm. It provides methods for responding to
* action list-versions
* action scrub-resources
* action list-resources
* action apply-missing-resources
* querying the collective versions (short and long types)
* listing which resources have a non-active status
To integrate into an [ops charm](https://juju.is/docs/sdk/ops), for each
released application the charm manages, create a new `Manifests` impl,
and add an instance of it to a `Collector`.
```python
class AlternateApp(Manifests):
def __init__(self, charm, charm_config):
super().__init__("alternate", charm.model, "upstream/example")
self.charm_config = charm_config
@property
def config(self) -> Dict:
"""Returns config mapped from charm config and joined relations."""
config = dict(**self.charm_config)
for key, value in dict(**config).items():
if value == "" or value is None:
del config[key] # blank out keys not currently set to something
config["release"] = config.pop("alternate-release", None)
return config
class ExampleCharm(CharmBase):
def __init__(self, *args):
...
# collection of ManifestImpls
self.collector = Collector(
ExampleApp(self, self.config),
AlternateApp(self, self.config),
)
```
## Manipulations
### Patching a manifest resource
Some resources already exist within the manifest, and just need to be updated.
#### Built in Patchers
* `ManifestLabel`
* adds to each resource's `metadata.labels` the following:
1) `juju.io/application: manifests.app_name`
2) `juju.io/manifest: manifests.name`
3) `juju.io/manifest-version: <manifests.name>-<version>`
* `ConfigRegistry`
* updates the image registry of every `Pod`, `DaemonSet`, `Deployment`, and
`StatefulSet` from the `image-registry` config item in the config
properties `Dict`.
* If the charm doesn't wish to alter the config, ensure nothing exists
in the `image-registry`.
* `update_toleration`
* not officially a patcher, but can be used by a custom Patcher
to adjust tolerations on `Pod`, `DaemonSet`, `Deployment`, and `StatefulSet`
resources.
### Adding a manifest resource
Some resources do not exist in the release manifest and must be added. The `Addition` manipulations are added
before the rest of the `Patch` manipulations are applied.
#### Built in Adders
* `CreateNamespace` - Creates a namespace resource using either the manifest's default namespace or
an argument passed in to the constructor of this class.
### Subtracting a manifest resource
Some manifest resources are not needed and must be removed. The `Subtraction` manipulations are added
before the rest of the `Patch` manipulations are applied.
#### Built in Subtractors
* `SubtractEq` - Subtracts a manifest resource equal to the resource passed in as an argument. Resources are considered
equal if they have the same kind, name, and namespace.
### Custom Manipulations
Of course the built-ins will not be enough, so your charm may extend its own manipulations by defining
new objects which inherit from either `Patch` or `Addition`.
.. _`changelog`:
=========
Changelog
=========
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).
Backward incompatible (breaking) changes will only be introduced in major versions
ops-lib-manifest 1.2.0 (2024-02-14)
=========================
* [#31](https://github.com/canonical/ops-lib-manifest/issues/31)
- The `Collector.conditions` property returns a mapping that ends up
hiding information relating to all the conditions of a kubernetes
resource. Only ONE condition is present in the mapping for each
resource.
- Introduce `Collector.all_conditions` property returning a list of
conditions and their associated manifests and object
- Check unready using the `all_conditions` property
* Allows a manifest to filter the ready check of each `condition` of an
object that it has installed by overriding the `is_ready(..)` method
ops-lib-manifest 1.1.4 (2024-01-10)
=========================
* only deletes resources created by this charm application
* LP#2025283 - Audit library to ensure that secrets aren't leaked to logs
* maintains python 3.7 compatability
ops-lib-manifest 1.1.3 (2023-06-28)
=========================
Issues Resolved
* [LP#2025087](https://launchpad.net/bugs/2025087)
- resolves issue where every item from a List
type resource object is read from the list
ops-lib-manifest 1.1.2 (2023-04-17)
=========================
Issues Resolved
* [LP#2006619](https://launchpad.net/bugs/2006619)
- resolves status issues when trying to use a client
which cannot reach the API endpoint
ops-lib-manifest 1.1.1 (2022-04-06)
=========================
Issues Resolved
* [LP#1999427](https://launchpad.net/bugs/1999427)
- resolve issues when loading CRDs from an
unreachable API endpoint
ops-lib-manifest 1.1.0 (2022-02-17)
=========================
Feature
* Supports image manipulation of `Job`, `CronJob`,
`ReplicationController` and `ReplicaSet` objects
ops-lib-manifest 1.0.0 (2022-12-14)
=========================
Issues Resolved
* [LP#1999427](https://launchpad.net/bugs/1999427)
- handles non-api errors from the client which are represented
as an http error response without json content.
Breaking Changes
----------------
* no longer are `lightkube.core.exceptions.ApiError`s raised on the following methods:
* Manifest.status
* Manifest.installed_resources
* Manifest.apply_manifest
* Manifest.delete_manifest
* Manifest.apply_resources
* Manifest.delete_resources
instead a more generic exception `ManifestClientError` is raised.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Raw data
{
"_id": null,
"home_page": "https://github.com/canonical/ops-lib-manifest",
"name": "ops.manifest",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "juju,charming,kubernetes,operators,manifests,yaml",
"author": "Adam Dyess",
"author_email": "adam.dyess@canonical.com",
"download_url": "https://files.pythonhosted.org/packages/1a/01/beb9784f1f26370ee0d66f55cadfb0af79b66b3f54ef687ad5ef4156eb88/ops.manifest-1.2.0.tar.gz",
"platform": null,
"description": "# ops-lib-manifests\n\n## Rationale for this library\nMost kubernetes projects deploy with manifest files which promote suggested deployment\nparameters, but those manifests aren't consistent about which options are requirements\nand which options are variable. In some cases the project's distribution uses different\nmeans of indicating a need for replacement.\n\nFor example, the following reference from [vsphere-cloud-controller-manager](https://github.com/kubernetes/cloud-provider-vsphere/blob/master/releases/v1.23/vsphere-cloud-controller-manager.yaml#L11-L24)\ngives the consumer of this yaml an indication there should be usernames and passwords set\nin the Secret object.\n\n```yaml\napiVersion: v1\nkind: Secret\nmetadata:\n name: vsphere-cloud-secret\n labels:\n vsphere-cpi-infra: secret\n component: cloud-controller-manager\n namespace: kube-system\n # NOTE: this is just an example configuration, update with real values based on your environment\nstringData:\n 10.0.0.1.username: \"<ENTER_YOUR_VCENTER_USERNAME>\"\n 10.0.0.1.password: \"<ENTER_YOUR_VCENTER_PASSWORD>\"\n 1.2.3.4.username: \"<ENTER_YOUR_VCENTER_USERNAME>\"\n 1.2.3.4.password: \"<ENTER_YOUR_VCENTER_PASSWORD>\"\n```\n\nAutomation tools like a juju charm will need to read these yaml manifest files, manipulate\nits content, and deploy those manifests when any of the **configurable** data is changed.\n\n\n## Supporting Multiple Releases\nLikewise, the projects which release reference manifest files, will also release versions\nof manifests. It's possible for a charm to load all the supported manifest files into a \nfolder structure such the charm supports multiple releases. This library supports this \nrequirements by having the charm store upstream manifest files unchanged in a folder \nstructure like this:\n\n```\n<base_path>\n\u251c\u2500\u2500 version - a file containing the default version\n\u251c\u2500\u2500 manifests - a folder containing all the releases\n\u2502 \u251c\u2500\u2500 v1.1.10 - a folder matching a configurable version\n\u2502 \u2502 \u251c\u2500\u2500 manifest-1.yaml - any file with a `.yaml` file type\n\u2502 \u2502 \u2514\u2500\u2500 manifest-2.yaml\n\u2502 \u251c\u2500\u2500 v1.1.11\n\u2502 \u2502 \u251c\u2500\u2500 manifest-1.yaml\n\u2502 \u2502 \u2514\u2500\u2500 manifest-2.yaml\n\u2502 \u2502 \u2514\u2500\u2500 manifest-3.yaml\n```\n\nKey file-heirarchy requirements\n-------------------------------\n| | |\n| --- | --- |\n| **$base_path** | A single charm can support multiple manifest releases\n| **version** | A text file indicating to the library which manifest version is the default when the 'release' config is unspecified |\n| **manifests** | A folder containing the individual release manifest folders |\n| **$release** | A folder containing the yaml files of the specific release |\n\n## Sample Usage\n\nOnce your charm includes the above manifest file hierarchy, your charm will need to define the\nmutations the library should make to the manifests. \n\n```python\nfrom ops.manifests import Collector, Manifests, ManifestLabel, ConfigRegistry\n\nclass ExampleApp(Manifests):\n def __init__(self, charm, charm_config):\n manipulations = [\n ManifestLabel(self),\n ConfigRegistry(self),\n UpdateSecret(self),\n ]\n super().__init__(\"example\", charm.model, \"upstream/example\", manipulations)\n self.charm_config = charm_config\n\n @property\n def config(self) -> Dict:\n \"\"\"Returns config mapped from charm config and joined relations.\"\"\"\n config = dict(**self.charm_config)\n\n for key, value in dict(**config).items():\n if value == \"\" or value is None:\n del config[key] # blank out keys not currently set to something\n\n config[\"release\"] = config.pop(\"example-release\", None)\n return config\n\n def is_ready(self, obj, condition) -> bool:\n \"\"\"Filter conditions by object and condition.\"\"\"\n if (\n obj.kind == \"Deployment\" and\n obj.name == \"MyDeployment\" and\n condition.type == \"Ignored\"\n ):\n return None # ignore this condition\n return super().is_ready(obj, condition)\n\n\nclass ExampleCharm(CharmBase):\n def __init__(self, *args):\n super().__init__(*args)\n\n # collection of ManifestImpls\n self.collector = Collector(ExampleApp(self, self.config))\n\n # Register actions callbacks\n self.framework.observe(self.on.list_versions_action, self._list_versions)\n \n # Register update status callbacks\n self.framework.observe(self.on.update_status, self._update_status)\n \n def _list_versions(self, event):\n self.collector.list_versions(event)\n\n def _update_status(self, _):\n unready = self.collector.unready\n if unready:\n self.unit.status = WaitingStatus(\", \".join(unready))\n else:\n self.unit.status = ActiveStatus(\"Ready\")\n self.unit.set_workload_version(self.collector.short_version)\n self.app.status = ActiveStatus(self.collector.long_version)\n \n```\n\n## Manifests\n\nThis class provides the following functions:\n1) Integration with lightkube to create/read/update/delete resources into the cluster\n2) Provides a means to select a manifest release\n3) Loads manifest files from a known file hierarchy specific to a release\n4) Manipulates resource objects of a specific release\n5) Provides comparisons between the installed resources and expected resources\n6) Provides user listing of available releases\n\n### Creating a Manifest Impl\nIt's expected that the developer create a `Manifest` impl -- a derived class -- that implements\none property -- `config`. This property provides some basic requirements to the\nManifest parent class and gives context for each custom `Manipulation` to act on \nrelation or config data.\n\n```python\n @property\n def config(self) -> Dict:\n \"\"\"Returns config mapped from charm config and joined relations.\"\"\"\n```\n\n#### Expected `config` key mappings\n* `release` \n * optional `str` which identifies which release of the manifest to choose.\n * defaults to `None` which will select the `default_release` if available.\n * if `default_release` isn't found, the latest release is chosen.\n* `image-registry`\n * optional `str` which will be used by the `ConfigRegistry` manipulation\n * defaults to `None` which uses the resources built-in registry location\n * if specified, will replace the text up to the first `/` with its contents\n\n\n### Cluster CRUD methods\n* `status()` \n * queries all in cluster resources associated with the current release which\n has a `.status.conditions` attribute.\n* `installed_resources()`\n * queries all in cluster resources associated with the current release which \n is installed.\n* `labelled_resources()`\n * queries all in cluster resources associated with the charm and manifest in general\n which is installed.\n * this can be compared with the `resources` property to look for extra resources \n installed which are no longer necessary.\n* `apply_manifests()`\n * applies all resources from the current release into the cluster.\n * resources are force applied, overwriting existing resources.\n* `apply_resources(*resources)` and `apply_resource(...)`\n * applies itemized resources into the cluster.\n * resources are force applied, overwriting existing resources.\n* `delete_manifests(...)`\n * will delete all current release resources from the cluster\n * see `delete_resources` for keyword arguments\n* `delete_resources(...)`\n * delete a specified set of resources from the cluster with options to \n seamlessly handle certain failures.\n* `delete_resource(...)`\n * alias to `delete_resources` for when reading clarity demands only deleting\n one resource.\n\n## Collector\n\nThis class provides a native collection for operating collectively on\nthe manifests within a single charm. It provides methods for responding to \n* action list-versions\n* action scrub-resources\n* action list-resources\n* action apply-missing-resources\n* querying the collective versions (short and long types)\n* listing which resources have a non-active status\n\nTo integrate into an [ops charm](https://juju.is/docs/sdk/ops), for each \nreleased application the charm manages, create a new `Manifests` impl, \nand add an instance of it to a `Collector`.\n\n```python\nclass AlternateApp(Manifests):\n def __init__(self, charm, charm_config):\n super().__init__(\"alternate\", charm.model, \"upstream/example\")\n self.charm_config = charm_config\n\n\n @property\n def config(self) -> Dict:\n \"\"\"Returns config mapped from charm config and joined relations.\"\"\"\n config = dict(**self.charm_config)\n\n for key, value in dict(**config).items():\n if value == \"\" or value is None:\n del config[key] # blank out keys not currently set to something\n\n config[\"release\"] = config.pop(\"alternate-release\", None)\n return config\n\n\nclass ExampleCharm(CharmBase):\n def __init__(self, *args):\n ...\n # collection of ManifestImpls\n self.collector = Collector(\n ExampleApp(self, self.config), \n AlternateApp(self, self.config),\n )\n```\n\n\n## Manipulations\n\n### Patching a manifest resource\nSome resources already exist within the manifest, and just need to be updated.\n\n#### Built in Patchers\n* `ManifestLabel` \n * adds to each resource's `metadata.labels` the following:\n 1) `juju.io/application: manifests.app_name`\n 2) `juju.io/manifest: manifests.name`\n 3) `juju.io/manifest-version: <manifests.name>-<version>`\n\n* `ConfigRegistry`\n * updates the image registry of every `Pod`, `DaemonSet`, `Deployment`, and\n `StatefulSet` from the `image-registry` config item in the config\n properties `Dict`.\n * If the charm doesn't wish to alter the config, ensure nothing exists\n in the `image-registry`.\n\n* `update_toleration` \n * not officially a patcher, but can be used by a custom Patcher\n to adjust tolerations on `Pod`, `DaemonSet`, `Deployment`, and `StatefulSet`\n resources.\n\n### Adding a manifest resource\nSome resources do not exist in the release manifest and must be added. The `Addition` manipulations are added\nbefore the rest of the `Patch` manipulations are applied.\n\n#### Built in Adders\n* `CreateNamespace` - Creates a namespace resource using either the manifest's default namespace or \n an argument passed in to the constructor of this class. \n\n### Subtracting a manifest resource\nSome manifest resources are not needed and must be removed. The `Subtraction` manipulations are added\nbefore the rest of the `Patch` manipulations are applied.\n\n#### Built in Subtractors\n* `SubtractEq` - Subtracts a manifest resource equal to the resource passed in as an argument. Resources are considered \n equal if they have the same kind, name, and namespace.\n\n### Custom Manipulations\nOf course the built-ins will not be enough, so your charm may extend its own manipulations by defining\nnew objects which inherit from either `Patch` or `Addition`.\n.. _`changelog`:\n\n=========\nChangelog\n=========\n\nVersions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).\n\nBackward incompatible (breaking) changes will only be introduced in major versions\n\nops-lib-manifest 1.2.0 (2024-02-14)\n=========================\n* [#31](https://github.com/canonical/ops-lib-manifest/issues/31)\n - The `Collector.conditions` property returns a mapping that ends up\n hiding information relating to all the conditions of a kubernetes \n resource. Only ONE condition is present in the mapping for each\n resource. \n - Introduce `Collector.all_conditions` property returning a list of\n conditions and their associated manifests and object\n - Check unready using the `all_conditions` property\n* Allows a manifest to filter the ready check of each `condition` of an \n object that it has installed by overriding the `is_ready(..)` method\n\n\n\nops-lib-manifest 1.1.4 (2024-01-10)\n=========================\n* only deletes resources created by this charm application\n* LP#2025283 - Audit library to ensure that secrets aren't leaked to logs\n* maintains python 3.7 compatability\n\n\nops-lib-manifest 1.1.3 (2023-06-28)\n=========================\n\nIssues Resolved\n* [LP#2025087](https://launchpad.net/bugs/2025087)\n - resolves issue where every item from a List \n type resource object is read from the list\n\nops-lib-manifest 1.1.2 (2023-04-17)\n=========================\n\nIssues Resolved\n* [LP#2006619](https://launchpad.net/bugs/2006619)\n - resolves status issues when trying to use a client\n which cannot reach the API endpoint\n\nops-lib-manifest 1.1.1 (2022-04-06)\n=========================\n\nIssues Resolved\n* [LP#1999427](https://launchpad.net/bugs/1999427)\n - resolve issues when loading CRDs from an\n unreachable API endpoint\n\nops-lib-manifest 1.1.0 (2022-02-17)\n=========================\n\nFeature\n* Supports image manipulation of `Job`, `CronJob`,\n `ReplicationController` and `ReplicaSet` objects\n\n\nops-lib-manifest 1.0.0 (2022-12-14)\n=========================\n\nIssues Resolved\n* [LP#1999427](https://launchpad.net/bugs/1999427)\n - handles non-api errors from the client which are represented\n as an http error response without json content.\n\nBreaking Changes\n----------------\n\n* no longer are `lightkube.core.exceptions.ApiError`s raised on the following methods:\n * Manifest.status\n * Manifest.installed_resources\n * Manifest.apply_manifest\n * Manifest.delete_manifest\n * Manifest.apply_resources\n * Manifest.delete_resources\n\n instead a more generic exception `ManifestClientError` is raised.\n\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n",
"bugtrack_url": null,
"license": "Apache",
"summary": "\"Kubernetes manifests for Operators\"",
"version": "1.2.0",
"project_urls": {
"Homepage": "https://github.com/canonical/ops-lib-manifest"
},
"split_keywords": [
"juju",
"charming",
"kubernetes",
"operators",
"manifests",
"yaml"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3dbb9b74a51dbaa2a621b882f966ac30eb99789db72f3051fef0a4db53547ae9",
"md5": "906f7c046c02e9d6534a2e4661dc1593",
"sha256": "6901622dff5e677916f16c64980f1fab7a6135eea72e78bb2b56b770ad6a8517"
},
"downloads": -1,
"filename": "ops.manifest-1.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "906f7c046c02e9d6534a2e4661dc1593",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 23916,
"upload_time": "2024-02-14T22:27:42",
"upload_time_iso_8601": "2024-02-14T22:27:42.182888Z",
"url": "https://files.pythonhosted.org/packages/3d/bb/9b74a51dbaa2a621b882f966ac30eb99789db72f3051fef0a4db53547ae9/ops.manifest-1.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a01beb9784f1f26370ee0d66f55cadfb0af79b66b3f54ef687ad5ef4156eb88",
"md5": "0a700ed72abfe5219dbad7db1d4bf31c",
"sha256": "4cf3deb54979f834f160cd690a4002ba10e5ff182c6f438cd37659fac19e1934"
},
"downloads": -1,
"filename": "ops.manifest-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "0a700ed72abfe5219dbad7db1d4bf31c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 26509,
"upload_time": "2024-02-14T22:27:43",
"upload_time_iso_8601": "2024-02-14T22:27:43.695963Z",
"url": "https://files.pythonhosted.org/packages/1a/01/beb9784f1f26370ee0d66f55cadfb0af79b66b3f54ef687ad5ef4156eb88/ops.manifest-1.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-02-14 22:27:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "canonical",
"github_project": "ops-lib-manifest",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "ops.manifest"
}