Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down