Skip to content

Commit f4b1ba3

Browse files
committed
Fix and customisation notes
1 parent f78bbdf commit f4b1ba3

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,26 @@ Edit the `Dockerfile` to add extra packages (there is a clearly marked section n
6767
## Manual trigger
6868

6969
You can also trigger a build from **Actions → Build and Deploy Lithops Runtime → Run workflow**.
70+
71+
## Customisation
72+
73+
### Changing the runtime name
74+
75+
The runtime is named `cubed-runtime` by default. To use a different name, edit the `RUNTIME_NAME` env var at the top of `.github/workflows/build-runtime.yml`:
76+
77+
```yaml
78+
env:
79+
RUNTIME_NAME: 'my-runtime-name'
80+
```
81+
82+
Remember to also update the `runtime` key in your local Lithops config if you change this.
83+
84+
### Using the latest Cubed from GitHub
85+
86+
To use the latest development version of Cubed from the `main` branch instead of the PyPI release, replace the `cubed` line in the `Dockerfile`:
87+
88+
```dockerfile
89+
RUN pip install \
90+
'git+https://github.com/cubed-dev/cubed.git#egg=cubed' \
91+
obstore
92+
```

cloudformation/github-oidc-role.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Resources:
9393
- lambda:ListFunctions
9494
- lambda:TagResource
9595
- lambda:InvokeFunction
96+
- lambda:ListTags
9697
Resource: '*'
9798
- Sid: S3
9899
Effect: Allow

0 commit comments

Comments
 (0)