From 66f6a7e703c35975e96442003cfc89f2793ea50a Mon Sep 17 00:00:00 2001 From: Maksim Beliaev Date: Mon, 17 Apr 2023 11:51:34 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d054207..368897a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Simply include the action as a step in your Workflow: ```yaml - name: Setup operator environment - uses: charmed-kubernetes/actions-operator@main + uses: charmed-kubernetes/actions-operator@1.1.0 ``` This will give your job an environment with the following: @@ -69,9 +69,9 @@ dns, storage and rbac. You can override these defaults with the following: uses: charmed-kubernetes/actions-operator@main with: provider: microk8s - microk8s-addons: "storage dns rbac registry" + microk8s-addons: "hostpath-storage dns rbac registry" ``` -Currently, if specific addons are defined, a minimum set of addons (the defaults) `dns, storage, rbac` must be enabled for the action to work properly.. +Currently, if specific addons are defined, a minimum set of addons (the defaults) `dns, hostpath-storage, rbac` must be enabled for the action to work properly.. ## pytest-operator From 355cb7294930a85d88d09f97f2ad816703daf8cd Mon Sep 17 00:00:00 2001 From: Maksim Beliaev Date: Mon, 17 Apr 2023 12:13:23 +0200 Subject: [PATCH 2/2] Update action.yaml --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index f1b6dd8..3aea8e3 100644 --- a/action.yaml +++ b/action.yaml @@ -59,7 +59,7 @@ inputs: microk8s-addons: description: "microk8s addons to enable" required: false - default: "storage dns rbac" + default: "hostpath-storage dns rbac" runs: using: "node16" main: "dist/bootstrap/index.js"