Leon

Results 74 comments of Leon

> offer a CLI tool to 'fetch' a model Seems excessive to expect a dev to `charmcraft fetch-lib` and `another-tool fetch-model`. Charm libs could use PYDEPS to specify how to...

Surprisingly, the following works: ``` $ pip install git+https://github.com/canonical/charm-relation-interfaces/ $ python3 >>> from interfaces.ingress.v1.schema import ProviderSchema >>> ``` Curious how pip decided to install it under `interfaces`, and why we...

From Prometheus Up & Running (page 97), you'd be able to get what you're looking for by propagating INFO metric labels with `on` + `group_left`. For example, given ```python from...

As of writing, the diff between v0 and v1 is: ![image](https://github.com/user-attachments/assets/1f33fbae-96c6-4458-86f0-c5cd5bd0b93d)

1Gi is a default value, and is as arbitrary as 20Gi. If the admin is not aware of this limit then they'd encounter the "storage full" problem eventually anyway. We'd...

Thanks @dilyn-corner! The snapcraft CLI seems to encourage prefixing: ![image](https://github.com/user-attachments/assets/9c663784-1322-45c4-8ac1-91ee4357bd73) It would be nice if snapcraft cli and the webui point to the same reference. Currently, each has slightly different...

For reference, copying here from the internal mattermost thread: > you need UID or GID mapping from the files on the host to the user in the VM to be...

Is there a way to automate the logic behind `-g 1000:1000 -u 1000:1000 -g 0:0 -u 0:0` with a dedicated cli arg, @sharder996? For example ``` multipass mount --dangerous /home/mt/work/canonical/repos...

We should investigate why `kube_pod_info{juju_application="kubernetes-control-plane"}` returns no (or partial) results. Perhaps something along the lines of: - `kube_pod_info` is a metric generated by `kubernetes-control-plane`; and - `kube_pod_info` actually applies to...

The `container_cpu_usage_seconds_total` metric is available on the control plane's `/metrics/cadvisor/` endpoint and it has information about cpu usage of the workers. We need to find out what labels they come...