Add pre-commit and cosign

This commit is contained in:
2024-04-13 08:50:23 +02:00
parent 1d8ab95eba
commit f1063b0ba2
4 changed files with 32 additions and 41 deletions

View File

@@ -15,6 +15,8 @@ DevOps Portable toolkit
- yq
- k6
- s3fs
- pre-commit
- cosign
```yaml
version: '3.7'
@@ -27,24 +29,3 @@ services:
- ~/.kube:/root/.kube
- ~/.ssh:/root/.ssh # If you use private CVS
```
## Mount S3
> Command : s3-mount
```yaml
version: '3.7'
services:
toolkit:
image: jkaninda/toolkit:latest
container_name: toolkit
privileged: true
devices:
- "/dev/fuse"
volumes:
- ./custome-volume:/custome-volume
environment:
- ACCESS_KEY=${ACCESS_KEY}
- SECRET_KEY=${SECRET_KEY}
- BUCKETNAME=${BUCKETNAME}
- S3_ENDPOINT=https://s3.us-west-2.amazonaws.com
```