Skip to content
/ arkade-plugin Public template

Install tools and Kubernetes applications in your CI/CD with Arkade

License

Notifications You must be signed in to change notification settings

fluentci-io/arkade-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arkade Plugin

fluentci pipeline ci

Install tools and Kubernetes applications with Arkade.

arkade logo

🚀 Usage

Add the following command to your CI configuration file:

fluentci run --wasm arkade setup

Functions

Name Description
setup Install arkade
chart Chart utilites
get The get command downloads a tool
install Install Kubernetes app
oci oci apps
system System apps

Code Usage

Add fluentci-pdk crate to your Cargo.toml:

[dependencies]
fluentci-pdk = "0.2.1"

Use the following code to call the plugin:

use fluentci_pdk::dag;

// ...

dag().call("https://pkg.fluentci.io/arkade@v0.1.0?wasm=1", "setup", vec![])?;

📚 Examples

Github Actions:

- name: Setup Fluent CI CLI
  uses: fluentci-io/setup-fluentci@v5
  with:
    wasm: true
    plugin: arkade
    args: |
      get kind
      system install firecracker
- name: Show kind, firecracker version
  run: |
    type arkade
    type kind
    type firecracker
    firecracker --version
    kind version