Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.21 KB

README.md

File metadata and controls

57 lines (37 loc) · 1.21 KB

Daggerverse Vault Module

Dagger module for daggerverse providing Vault functionality.

The Dagger module is located in the vault-kv directory.

Usage

Basic usage guide.

The vault-kv directory contains a daggerverse Dagger module.

Check the official Dagger Module documentation: https://docs.dagger.io/

The Dagger CLI is needed.

Functions

List all functions of the module. This command is provided by the Dagger CLI.

dagger functions -m ./vault-kv/

The vault-kv module is referenced locally.

Development

Basic development guide.

Set up Dagger module

# enter into the module's directory
cd vault-kv/
# initialize the module
dagger develop --sdk go

Testing

This module contains a testing module that aims to test Dagger vault-kv module.

# enter into the test module's directory
cd tests/
# initialize the module
dagger develop --sdk go
# execute the tests
dagger call test

To Do

  • Add cache mounts
  • Add environment variables
  • Add more examples