Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1044 from Aflynn50/fix-microk8s-proxy-issue
#1044 The temporary file used to store the ca_cert was set to delete itself on close. This meant that when it was accessed multiple times it would no longer be present. Set to not delete on close and to remove file when the proxy is deleted. #### QA Steps ``` juju bootstrap microk8s juju add-model default juju deploy cos-lite ``` In python ``` from juju import model m = model.Model() await m.connect() await m.create_offer("grafana:grafana-dashboard", "grafana-dashboards") await m.disconnect() ``` Check all resource in /tmp have been cleaned up Fixes #1040
- Loading branch information