Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/arkade-plugin
Install tools and Kubernetes applications in your CI/CD with Arkade
https://github.com/fluentci-io/arkade-plugin
cicd helm kubernetes wasm webassembly
Last synced: about 1 month ago
JSON representation
Install tools and Kubernetes applications in your CI/CD with Arkade
- Host: GitHub
- URL: https://github.com/fluentci-io/arkade-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-08-06T16:44:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-06T19:12:17.000Z (5 months ago)
- Last Synced: 2024-08-06T22:25:35.199Z (5 months ago)
- Topics: cicd, helm, kubernetes, wasm, webassembly
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arkade Plugin
[![fluentci pipeline](https://shield.fluentci.io/x/arkade)](https://pkg.fluentci.io/arkade)
[![ci](https://github.com/fluentci-io/arkade-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/arkade-plugin/actions/workflows/ci.yml)Install tools and Kubernetes applications with [Arkade](http://github.com/alexellis/arkade).
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
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`:
```toml
[dependencies]
fluentci-pdk = "0.2.1"
```Use the following code to call the plugin:
```rust
use fluentci_pdk::dag;// ...
dag().call("https://pkg.fluentci.io/[email protected]?wasm=1", "setup", vec![])?;
```## 📚 Examples
Github Actions:
```yaml
- 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
```