edge-containers-cli 4.0.0__tar.gz → 4.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.copier-answers.yml +3 -3
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.devcontainer/devcontainer.json +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/CONTRIBUTING.md +1 -1
- edge_containers_cli-4.1.1/.github/ISSUE_TEMPLATE/bug_report.md +21 -0
- edge_containers_cli-4.1.1/.github/ISSUE_TEMPLATE/issue.md +13 -0
- edge_containers_cli-4.1.1/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +8 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/pages/index.html +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/pages/make_switcher.py +7 -3
- edge_containers_cli-4.1.1/.github/workflows/_container.yml +60 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_pypi.yml +0 -5
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_release.yml +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/ci.yml +8 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.gitignore +1 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.pre-commit-config.yaml +1 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.vscode/extensions.json +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.vscode/launch.json +6 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.vscode/settings.json +2 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.vscode/tasks.json +1 -1
- edge_containers_cli-4.1.1/Dockerfile +31 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/PKG-INFO +2 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/README.md +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/explanations/decisions.rst +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/make-release.rst +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/images/dls-logo.svg +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/pyproject.toml +18 -10
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/__main__.py +9 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/_version.py +2 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/autocomplete.py +2 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/backend.py +19 -5
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cli.py +12 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/argo_commands.py +42 -8
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/commands.py +20 -18
- edge_containers_cli-4.1.1/src/edge_containers_cli/cmds/demo_commands.py +135 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/k8s_commands.py +7 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/monitor.py +6 -6
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/monitor.tcss +1 -1
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/definitions.py +1 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/git.py +28 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/utils.py +45 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/PKG-INFO +2 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/SOURCES.txt +22 -14
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/conftest.py +11 -1
- edge_containers_cli-4.1.1/tests/data/argocd.yaml +83 -0
- edge_containers_cli-4.1.1/tests/data/bl01t-deployment/apps/values.yaml +3 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/data/k8s.yaml +3 -3
- edge_containers_cli-4.1.1/tests/data/yaml.yaml +12 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/test_argocd.py +22 -2
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/test_cli.py +2 -2
- edge_containers_cli-4.1.1/tests/test_demo.py +32 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/test_k8s.py +5 -3
- edge_containers_cli-4.1.1/tests/test_unit.py +30 -0
- edge_containers_cli-4.0.0/Dockerfile +0 -13
- edge_containers_cli-4.0.0/catalog-info.yaml +0 -10
- edge_containers_cli-4.0.0/tests/data/argocd.yaml +0 -45
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/actions/install_requirements/action.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/dependabot.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_check.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_dist.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_test.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/.github/workflows/_tox.yml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/LICENSE +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/conf.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/explanations/decisions/0001-record-architecture-decisions.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/explanations/decisions/0002-switched-to-pip-skeleton.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/build-docs.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/contribute.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/lint.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/pin-requirements.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/run-tests.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/static-analysis.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/test-container.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/update-tools.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/index.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/reference/standards.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/tutorials/dev-install.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/genindex.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/images/dls-favicon.ico +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/index.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/user/explanations/docs-structure.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/user/how-to/run-container.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/user/index.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/user/reference/api.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/user/tutorials/installation.rst +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/setup.cfg +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/__init__.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/__init__.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/cmds/helm.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/globals.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/logging.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/shell.py +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/dependency_links.txt +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/entry_points.txt +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/requires.txt +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli.egg-info/top_level.txt +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/__init__.py +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-01/Chart.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-01/config/ioc.db +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-01/config/ioc.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-01/templates/configmap.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-01/values.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-02/Chart.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/bl01t-ea-test-02/values.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/dls-aravis/Chart.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/dls-aravis/config/ioc.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/dls-aravis/templates/configmap.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/dls-aravis/values.yaml +0 -0
- {edge_containers_cli-4.0.0/tests/data/bl01t → edge_containers_cli-4.1.1/tests/data/bl01t-services}/services/values.yaml +0 -0
- {edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/tests/data/cli.yaml +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Changes here will be overwritten by Copier
|
|
2
|
-
_commit:
|
|
2
|
+
_commit: 2.3.0
|
|
3
3
|
_src_path: gh:DiamondLightSource/python-copier-template
|
|
4
4
|
author_email: giles.knap@gmail.com
|
|
5
5
|
author_name: Giles Knap
|
|
6
|
-
component_owner: group:default/sscc
|
|
7
6
|
description: CLI for deploying and managing epics containers IOCs and services
|
|
8
7
|
distribution_name: edge-containers-cli
|
|
9
|
-
docker:
|
|
8
|
+
docker: true
|
|
10
9
|
docs_type: README
|
|
11
10
|
git_platform: github.com
|
|
12
11
|
github_org: epics-containers
|
|
13
12
|
package_name: edge_containers_cli
|
|
13
|
+
pypi: true
|
|
14
14
|
repo_name: edge-containers-cli
|
|
15
15
|
type_checker: pyright
|
|
@@ -43,4 +43,4 @@
|
|
|
43
43
|
"workspaceMount": "source=${localWorkspaceFolder}/..,target=/workspaces,type=bind",
|
|
44
44
|
// After the container is created, install the python project in editable form
|
|
45
45
|
"postCreateCommand": "pip install $([ -f dev-requirements.txt ] && echo '-c dev-requirements.txt') -e '.[dev]' && pre-commit install"
|
|
46
|
-
}
|
|
46
|
+
}
|
|
@@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua
|
|
|
24
24
|
|
|
25
25
|
This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects.
|
|
26
26
|
|
|
27
|
-
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/
|
|
27
|
+
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/2.3.0/how-to.html).
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug Report
|
|
3
|
+
about: The template to use for reporting bugs and usability issues
|
|
4
|
+
title: " "
|
|
5
|
+
labels: 'bug'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Describe the bug, including a clear and concise description of the expected behavior, the actual behavior and the context in which you encountered it (ideally include details of your environment).
|
|
11
|
+
|
|
12
|
+
## Steps To Reproduce
|
|
13
|
+
Steps to reproduce the behavior:
|
|
14
|
+
1. Go to '...'
|
|
15
|
+
2. Click on '....'
|
|
16
|
+
3. Scroll down to '....'
|
|
17
|
+
4. See error
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Acceptance Criteria
|
|
21
|
+
- Specific criteria that will be used to judge if the issue is fixed
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Issue
|
|
3
|
+
about: The standard template to use for feature requests, design discussions and tasks
|
|
4
|
+
title: " "
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
A brief description of the issue, including specific stakeholders and the business case where appropriate
|
|
11
|
+
|
|
12
|
+
## Acceptance Criteria
|
|
13
|
+
- Specific criteria that will be used to judge if the issue is fixed
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
+
"""Make switcher.json to allow docs to switch between different versions."""
|
|
2
|
+
|
|
1
3
|
import json
|
|
2
4
|
import logging
|
|
3
5
|
from argparse import ArgumentParser
|
|
4
6
|
from pathlib import Path
|
|
5
7
|
from subprocess import CalledProcessError, check_output
|
|
6
|
-
from typing import Optional
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
def report_output(stdout: bytes, label: str) -> list[str]:
|
|
11
|
+
"""Print and return something received frm stdout."""
|
|
10
12
|
ret = stdout.decode().strip().split("\n")
|
|
11
13
|
print(f"{label}: {ret}")
|
|
12
14
|
return ret
|
|
@@ -24,7 +26,7 @@ def get_sorted_tags_list() -> list[str]:
|
|
|
24
26
|
return report_output(stdout, "Tags list")
|
|
25
27
|
|
|
26
28
|
|
|
27
|
-
def get_versions(ref: str, add:
|
|
29
|
+
def get_versions(ref: str, add: str | None) -> list[str]:
|
|
28
30
|
"""Generate the file containing the list of all GitHub Pages builds."""
|
|
29
31
|
# Get the directories (i.e. builds) from the GitHub Pages branch
|
|
30
32
|
try:
|
|
@@ -53,7 +55,8 @@ def get_versions(ref: str, add: Optional[str]) -> list[str]:
|
|
|
53
55
|
return versions
|
|
54
56
|
|
|
55
57
|
|
|
56
|
-
def write_json(path: Path, repository: str, versions: str):
|
|
58
|
+
def write_json(path: Path, repository: str, versions: list[str]):
|
|
59
|
+
"""Write the JSON switcher to path."""
|
|
57
60
|
org, repo_name = repository.split("/")
|
|
58
61
|
struct = [
|
|
59
62
|
{"version": version, "url": f"https://{org}.github.io/{repo_name}/{version}/"}
|
|
@@ -65,6 +68,7 @@ def write_json(path: Path, repository: str, versions: str):
|
|
|
65
68
|
|
|
66
69
|
|
|
67
70
|
def main(args=None):
|
|
71
|
+
"""Parse args and write switcher."""
|
|
68
72
|
parser = ArgumentParser(
|
|
69
73
|
description="Make a versions.json file from gh-pages directories"
|
|
70
74
|
)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
on:
|
|
2
|
+
workflow_call:
|
|
3
|
+
|
|
4
|
+
jobs:
|
|
5
|
+
build:
|
|
6
|
+
runs-on: ubuntu-latest
|
|
7
|
+
|
|
8
|
+
steps:
|
|
9
|
+
- name: Checkout
|
|
10
|
+
uses: actions/checkout@v4
|
|
11
|
+
with:
|
|
12
|
+
# Need this to get version number from last tag
|
|
13
|
+
fetch-depth: 0
|
|
14
|
+
|
|
15
|
+
- name: Set up Docker Buildx
|
|
16
|
+
id: buildx
|
|
17
|
+
uses: docker/setup-buildx-action@v3
|
|
18
|
+
|
|
19
|
+
- name: Log in to GitHub Docker Registry
|
|
20
|
+
if: github.event_name != 'pull_request'
|
|
21
|
+
uses: docker/login-action@v3
|
|
22
|
+
with:
|
|
23
|
+
registry: ghcr.io
|
|
24
|
+
username: ${{ github.actor }}
|
|
25
|
+
password: ${{ secrets.GITHUB_TOKEN }}
|
|
26
|
+
|
|
27
|
+
- name: Build and export to Docker local cache
|
|
28
|
+
uses: docker/build-push-action@v6
|
|
29
|
+
env:
|
|
30
|
+
DOCKER_BUILD_RECORD_UPLOAD: false
|
|
31
|
+
with:
|
|
32
|
+
context: .
|
|
33
|
+
# Need load and tags so we can test it below
|
|
34
|
+
load: true
|
|
35
|
+
tags: tag_for_testing
|
|
36
|
+
|
|
37
|
+
- name: Test cli works in cached runtime image
|
|
38
|
+
run: docker run --rm tag_for_testing --help
|
|
39
|
+
|
|
40
|
+
- name: Create tags for publishing image
|
|
41
|
+
id: meta
|
|
42
|
+
uses: docker/metadata-action@v5
|
|
43
|
+
with:
|
|
44
|
+
images: ghcr.io/${{ github.repository }}
|
|
45
|
+
tags: |
|
|
46
|
+
type=ref,event=tag
|
|
47
|
+
type=raw,value=latest
|
|
48
|
+
|
|
49
|
+
- name: Push cached image to container registry
|
|
50
|
+
if: github.ref_type == 'tag'
|
|
51
|
+
uses: docker/build-push-action@v6
|
|
52
|
+
env:
|
|
53
|
+
DOCKER_BUILD_RECORD_UPLOAD: false
|
|
54
|
+
# This does not build the image again, it will find the image in the
|
|
55
|
+
# Docker cache and publish it
|
|
56
|
+
with:
|
|
57
|
+
context: .
|
|
58
|
+
push: true
|
|
59
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
60
|
+
labels: ${{ steps.meta.outputs.labels }}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
on:
|
|
2
2
|
workflow_call:
|
|
3
|
-
secrets:
|
|
4
|
-
PYPI_TOKEN:
|
|
5
|
-
required: true
|
|
6
3
|
|
|
7
4
|
jobs:
|
|
8
5
|
upload:
|
|
@@ -18,5 +15,3 @@ jobs:
|
|
|
18
15
|
|
|
19
16
|
- name: Publish to PyPI using trusted publishing
|
|
20
17
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
21
|
-
with:
|
|
22
|
-
password: ${{ secrets.PYPI_TOKEN }}
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
- name: Create GitHub Release
|
|
24
24
|
# We pin to the SHA, not the tag, for security reasons.
|
|
25
25
|
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
|
|
26
|
-
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 #
|
|
26
|
+
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
|
|
27
27
|
with:
|
|
28
28
|
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }}
|
|
29
29
|
files: "*"
|
|
@@ -34,6 +34,14 @@ jobs:
|
|
|
34
34
|
secrets:
|
|
35
35
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
36
36
|
|
|
37
|
+
container:
|
|
38
|
+
needs: check
|
|
39
|
+
if: needs.check.outputs.branch-pr == ''
|
|
40
|
+
uses: ./.github/workflows/_container.yml
|
|
41
|
+
permissions:
|
|
42
|
+
contents: read
|
|
43
|
+
packages: write
|
|
44
|
+
|
|
37
45
|
dist:
|
|
38
46
|
needs: check
|
|
39
47
|
if: needs.check.outputs.branch-pr == ''
|
|
@@ -45,8 +53,6 @@ jobs:
|
|
|
45
53
|
uses: ./.github/workflows/_pypi.yml
|
|
46
54
|
permissions:
|
|
47
55
|
id-token: write
|
|
48
|
-
secrets:
|
|
49
|
-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
|
50
56
|
|
|
51
57
|
release:
|
|
52
58
|
if: github.ref_type == 'tag'
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"configurations": [
|
|
7
7
|
{
|
|
8
8
|
"name": "Debug Unit Test",
|
|
9
|
-
"type": "
|
|
9
|
+
"type": "debugpy",
|
|
10
10
|
"request": "launch",
|
|
11
11
|
"justMyCode": false,
|
|
12
12
|
"program": "${file}",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"debug-test"
|
|
15
15
|
],
|
|
16
16
|
"console": "integratedTerminal",
|
|
17
|
+
"env": {
|
|
18
|
+
// Enable break on exception when debugging tests (see: tests/conftest.py)
|
|
19
|
+
"PYTEST_RAISE": "1",
|
|
20
|
+
},
|
|
17
21
|
}
|
|
18
22
|
]
|
|
19
|
-
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# The devcontainer should use the developer target and run as root with podman
|
|
2
|
+
# or docker with user namespaces.
|
|
3
|
+
ARG PYTHON_VERSION=3.11
|
|
4
|
+
FROM python:${PYTHON_VERSION} as developer
|
|
5
|
+
|
|
6
|
+
# Add any system dependencies for the developer/build environment here
|
|
7
|
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
8
|
+
graphviz \
|
|
9
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
10
|
+
|
|
11
|
+
# Set up a virtual environment and put it in PATH
|
|
12
|
+
RUN python -m venv /venv
|
|
13
|
+
ENV PATH=/venv/bin:$PATH
|
|
14
|
+
|
|
15
|
+
# The build stage installs the context into the venv
|
|
16
|
+
FROM developer as build
|
|
17
|
+
COPY . /context
|
|
18
|
+
WORKDIR /context
|
|
19
|
+
RUN touch dev-requirements.txt && pip install -c dev-requirements.txt .
|
|
20
|
+
|
|
21
|
+
# The runtime stage copies the built venv into a slim runtime container
|
|
22
|
+
FROM python:${PYTHON_VERSION}-slim as runtime
|
|
23
|
+
# Add apt-get system dependecies for runtime here if needed
|
|
24
|
+
COPY --from=build /venv/ /venv/
|
|
25
|
+
ENV PATH=/venv/bin:$PATH
|
|
26
|
+
RUN pip install textual-dev
|
|
27
|
+
|
|
28
|
+
# change this entrypoint if it is not the same as the repo
|
|
29
|
+
# Usage: serve "ec -b DEMO monitor" -p 8081
|
|
30
|
+
ENTRYPOINT ["textual", "serve"]
|
|
31
|
+
CMD ["--version"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: edge-containers-cli
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.1.1
|
|
4
4
|
Summary: CLI for deploying and managing epics containers IOCs and services
|
|
5
5
|
Author-email: Giles Knap <giles.knap@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -250,6 +250,7 @@ https://epics-containers.github.io/
|
|
|
250
250
|
Source | <https://github.com/epics-containers/edge-containers-cli>
|
|
251
251
|
:---: | :---:
|
|
252
252
|
PyPI | `pip install edge-containers-cli`
|
|
253
|
+
Docker | `docker run ghcr.io/epics-containers/edge-containers-cli:latest`
|
|
253
254
|
Releases | <https://github.com/epics-containers/edge-containers-cli/releases>
|
|
254
255
|
|
|
255
256
|
|
|
@@ -258,4 +259,3 @@ and perform the following::
|
|
|
258
259
|
|
|
259
260
|
pip install edge-containers-cli
|
|
260
261
|
ec --version
|
|
261
|
-
|
|
@@ -15,6 +15,7 @@ https://epics-containers.github.io/
|
|
|
15
15
|
Source | <https://github.com/epics-containers/edge-containers-cli>
|
|
16
16
|
:---: | :---:
|
|
17
17
|
PyPI | `pip install edge-containers-cli`
|
|
18
|
+
Docker | `docker run ghcr.io/epics-containers/edge-containers-cli:latest`
|
|
18
19
|
Releases | <https://github.com/epics-containers/edge-containers-cli/releases>
|
|
19
20
|
|
|
20
21
|
|
|
@@ -23,4 +24,3 @@ and perform the following::
|
|
|
23
24
|
|
|
24
25
|
pip install edge-containers-cli
|
|
25
26
|
ec --version
|
|
26
|
-
|
{edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/docs/developer/how-to/make-release.rst
RENAMED
|
@@ -13,4 +13,4 @@ To make a new release, please follow this checklist:
|
|
|
13
13
|
Note that tagging and pushing to the main branch has the same effect except that
|
|
14
14
|
you will not get the option to edit the release notes.
|
|
15
15
|
|
|
16
|
-
.. _release: https://github.com/epics-containers/edge-containers-cli/releases
|
|
16
|
+
.. _release: https://github.com/epics-containers/edge-containers-cli/releases
|
|
@@ -8,4 +8,4 @@
|
|
|
8
8
|
<path id="path2859" d="m156.09 651.68-0.30524-2.1354c1.4474 0.12317 2.8387 0.4409 4.1468 0.93101l-2.4011 1.8011c-0.67345 0.5049-1.3214 0.23639-1.4405-0.5967" fill="#fddd04" />
|
|
9
9
|
<path id="path2861" d="m148.46 656.04-7.3723 0.918c1.3908-2.2598 3.3397-4.1371 5.6539-5.4455l2.3151 3.0873c0.5049 0.67295 0.23639 1.3212-0.5967 1.4402" fill="#fddd04" />
|
|
10
10
|
</g>
|
|
11
|
-
</svg>
|
|
11
|
+
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=64", "setuptools_scm[toml]>=
|
|
2
|
+
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -54,9 +54,10 @@ name = "Giles Knap"
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
[tool.setuptools_scm]
|
|
57
|
-
|
|
57
|
+
version_file = "src/edge_containers_cli/_version.py"
|
|
58
58
|
|
|
59
59
|
[tool.pyright]
|
|
60
|
+
typeCheckingMode = "standard"
|
|
60
61
|
reportMissingImports = false # Ignore missing stubs in imported modules
|
|
61
62
|
|
|
62
63
|
[tool.pytest.ini_options]
|
|
@@ -100,7 +101,7 @@ allowlist_externals =
|
|
|
100
101
|
pre-commit
|
|
101
102
|
pyright
|
|
102
103
|
commands =
|
|
103
|
-
pre-commit: pre-commit run --all-files {posargs}
|
|
104
|
+
pre-commit: pre-commit run --all-files --show-diff-on-failure {posargs}
|
|
104
105
|
type-checking: pyright src tests {posargs}
|
|
105
106
|
tests: pytest --cov=edge_containers_cli --cov-report term --cov-report xml:cov.xml {posargs}
|
|
106
107
|
"""
|
|
@@ -115,11 +116,18 @@ lint.ignore = [
|
|
|
115
116
|
"UP007", # Do not complain about Optional[] (TODO: remove once typer is patched)
|
|
116
117
|
]
|
|
117
118
|
lint.select = [
|
|
118
|
-
"B",
|
|
119
|
-
"C4",
|
|
120
|
-
"E",
|
|
121
|
-
"F",
|
|
122
|
-
"W",
|
|
123
|
-
"I",
|
|
124
|
-
"UP",
|
|
119
|
+
"B", # flake8-bugbear - https://docs.astral.sh/ruff/rules/#flake8-bugbear-b
|
|
120
|
+
"C4", # flake8-comprehensions - https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4
|
|
121
|
+
"E", # pycodestyle errors - https://docs.astral.sh/ruff/rules/#error-e
|
|
122
|
+
"F", # pyflakes rules - https://docs.astral.sh/ruff/rules/#pyflakes-f
|
|
123
|
+
"W", # pycodestyle warnings - https://docs.astral.sh/ruff/rules/#warning-w
|
|
124
|
+
"I", # isort - https://docs.astral.sh/ruff/rules/#isort-i
|
|
125
|
+
"UP", # pyupgrade - https://docs.astral.sh/ruff/rules/#pyupgrade-up
|
|
126
|
+
"SLF", # self - https://docs.astral.sh/ruff/settings/#lintflake8-self
|
|
125
127
|
]
|
|
128
|
+
|
|
129
|
+
[tool.ruff.lint.per-file-ignores]
|
|
130
|
+
# By default, private member access is allowed in tests
|
|
131
|
+
# See https://github.com/DiamondLightSource/python-copier-template/issues/154
|
|
132
|
+
# Remove this line to forbid private member access in tests
|
|
133
|
+
"tests/**/*" = ["SLF001"]
|
|
@@ -23,15 +23,22 @@ def version_callback(value: bool):
|
|
|
23
23
|
|
|
24
24
|
def backend_callback(ctx: typer.Context, backend: ECBackends):
|
|
25
25
|
init_backend(backend)
|
|
26
|
+
|
|
26
27
|
# Dynamically drop any method not implemented
|
|
27
28
|
not_implemented = [
|
|
28
|
-
mthd.replace("_", "-") for mthd in ec_backend.
|
|
29
|
+
mthd.replace("_", "-") for mthd in ec_backend.get_notimplemented_cmds()
|
|
29
30
|
]
|
|
31
|
+
typer_commands = ctx.command.commands # type: ignore
|
|
30
32
|
for command in not_implemented:
|
|
31
|
-
typer_commands = ctx.command.commands # type: ignore
|
|
32
33
|
if command in typer_commands:
|
|
33
34
|
typer_commands.pop(command)
|
|
34
35
|
|
|
36
|
+
# Dynamically drop any cli options as specified
|
|
37
|
+
for cmd_name, drop_params in ec_backend.get_notimplemented_params().items():
|
|
38
|
+
for index, param in enumerate(typer_commands[cmd_name].params):
|
|
39
|
+
if param.name in drop_params:
|
|
40
|
+
typer_commands[cmd_name].params.pop(index)
|
|
41
|
+
|
|
35
42
|
return backend.value
|
|
36
43
|
|
|
37
44
|
|
{edge_containers_cli-4.0.0 → edge_containers_cli-4.1.1}/src/edge_containers_cli/autocomplete.py
RENAMED
|
@@ -81,7 +81,7 @@ def force_plain_completion() -> list[str]:
|
|
|
81
81
|
def running_svc(ctx: typer.Context) -> list[str]:
|
|
82
82
|
autocomplete_backend_init(ctx)
|
|
83
83
|
try:
|
|
84
|
-
return ec_backend.commands._running_services()
|
|
84
|
+
return ec_backend.commands._running_services() # noqa: SLF001
|
|
85
85
|
except (CommandError, ShellError) as e:
|
|
86
86
|
typer.echo(f"\n{e}", nl=False, err=True)
|
|
87
87
|
return []
|
|
@@ -90,7 +90,7 @@ def running_svc(ctx: typer.Context) -> list[str]:
|
|
|
90
90
|
def all_svc(ctx: typer.Context) -> list[str]:
|
|
91
91
|
autocomplete_backend_init(ctx)
|
|
92
92
|
try:
|
|
93
|
-
return ec_backend.commands._all_services()
|
|
93
|
+
return ec_backend.commands._all_services() # noqa: SLF001
|
|
94
94
|
except (CommandError, ShellError) as e:
|
|
95
95
|
typer.echo(f"\n{e}", nl=False, err=True)
|
|
96
96
|
return []
|
|
@@ -4,6 +4,7 @@ Manage a backend for the project
|
|
|
4
4
|
|
|
5
5
|
from edge_containers_cli.cmds.argo_commands import ArgoCommands
|
|
6
6
|
from edge_containers_cli.cmds.commands import Commands
|
|
7
|
+
from edge_containers_cli.cmds.demo_commands import DemoCommands
|
|
7
8
|
from edge_containers_cli.cmds.k8s_commands import K8sCommands
|
|
8
9
|
from edge_containers_cli.definitions import ECBackends, ECContext
|
|
9
10
|
from edge_containers_cli.utils import public_methods
|
|
@@ -20,6 +21,13 @@ class Backend:
|
|
|
20
21
|
self._Commands: type | None = None
|
|
21
22
|
self._commands: Commands | None = None
|
|
22
23
|
|
|
24
|
+
@property
|
|
25
|
+
def Commands(self):
|
|
26
|
+
if self._Commands is None:
|
|
27
|
+
raise BackendError("Backend commands not set")
|
|
28
|
+
else:
|
|
29
|
+
return self._Commands
|
|
30
|
+
|
|
23
31
|
@property
|
|
24
32
|
def commands(self):
|
|
25
33
|
if self._commands is None:
|
|
@@ -29,10 +37,13 @@ class Backend:
|
|
|
29
37
|
|
|
30
38
|
def set_backend(self, backend: ECBackends):
|
|
31
39
|
self._value = backend
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
40
|
+
match backend:
|
|
41
|
+
case ECBackends.DEMO:
|
|
42
|
+
self._Commands = DemoCommands
|
|
43
|
+
case ECBackends.K8S:
|
|
44
|
+
self._Commands = K8sCommands
|
|
45
|
+
case ECBackends.ARGOCD:
|
|
46
|
+
self._Commands = ArgoCommands
|
|
36
47
|
|
|
37
48
|
def set_context(self, context: ECContext):
|
|
38
49
|
"""
|
|
@@ -44,7 +55,7 @@ class Backend:
|
|
|
44
55
|
self._cxt = context
|
|
45
56
|
self._commands = self._Commands(context)
|
|
46
57
|
|
|
47
|
-
def
|
|
58
|
+
def get_notimplemented_cmds(self) -> list[str]:
|
|
48
59
|
notimplemented = []
|
|
49
60
|
if self._Commands is None:
|
|
50
61
|
return []
|
|
@@ -54,6 +65,9 @@ class Backend:
|
|
|
54
65
|
notimplemented.append(command)
|
|
55
66
|
return notimplemented
|
|
56
67
|
|
|
68
|
+
def get_notimplemented_params(self) -> dict[str, list[str]]:
|
|
69
|
+
return self.Commands.params_opt_out
|
|
70
|
+
|
|
57
71
|
|
|
58
72
|
backend = Backend()
|
|
59
73
|
|
|
@@ -234,9 +234,14 @@ def start(
|
|
|
234
234
|
service_name: str = typer.Argument(
|
|
235
235
|
..., help="Name of the service container to start", autocompletion=all_svc
|
|
236
236
|
),
|
|
237
|
+
temp: bool = typer.Option(False, help="Directly overrides the controller values"),
|
|
237
238
|
):
|
|
238
239
|
"""Start a service"""
|
|
239
|
-
|
|
240
|
+
try:
|
|
241
|
+
backend.commands.start(service_name, temp)
|
|
242
|
+
except GitError as e:
|
|
243
|
+
msg = f"{str(e)} - Try 'ec start <service> --temp' to bypass the git server"
|
|
244
|
+
raise GitError(msg) from e
|
|
240
245
|
|
|
241
246
|
|
|
242
247
|
@cli.command()
|
|
@@ -246,9 +251,14 @@ def stop(
|
|
|
246
251
|
help="Name of the service container to stop",
|
|
247
252
|
autocompletion=running_svc,
|
|
248
253
|
),
|
|
254
|
+
temp: bool = typer.Option(False, help="Directly overrides the controller values"),
|
|
249
255
|
):
|
|
250
256
|
"""Stop a service"""
|
|
251
|
-
|
|
257
|
+
try:
|
|
258
|
+
backend.commands.stop(service_name, temp)
|
|
259
|
+
except GitError as e:
|
|
260
|
+
msg = f"{str(e)} - Try ec stop <service> --temp to bypass the git server"
|
|
261
|
+
raise GitError(msg) from e
|
|
252
262
|
|
|
253
263
|
|
|
254
264
|
@cli.command()
|