We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/controlplaneio-fluxcd/flux-operator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Setup Flux Operator CLI GitHub Action
This GitHub Action can be used to install the Flux Operator CLI on GitHub runners for usage in workflows.
All GitHub runners are supported, including Ubuntu, Windows, and macOS.
## Usage
Example workflow for printing the latest version:
```yaml
name: Check the latest version
on:
workflow_dispatch:
jobs:
check-latest-flux-operator-version:
runs-on: ubuntu-latest
steps:
- name: Setup Flux Operator CLI
uses: controlplaneio-fluxcd/flux-operator/actions/setup@main
with:
version: latest
- name: Print Flux Operator Version
run: flux-operator version --client
```
## Action Inputs
| Name | Description | Default |
|--------------------|----------------------------------|---------------------------|
| `version` | Flux Operator version | The latest stable release |
| `bindir` | Alternative location for the CLI | `$RUNNER_TOOL_CACHE` |
## Action Outputs
| Name | Description |
|--------------------|--------------------------------------------------------------|
| `version` | The Flux Operator CLI version that was effectively installed |