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
---
apiVersion: fluxcd.controlplane.io/v1
kind: ResourceSet
metadata:
name: apps
namespace: test
spec:
inputsFrom:
- selector:
matchLabels:
fluxcd.controlplane.io/role: provisioning
resourcesTemplate: |
<<- $id := inputs.id >>
<<- $tenant := inputs.tenantName >>
<<- range $app := inputs.applications >>
<<- $appName := $app.name >>
<<- range $env := $app.envs >>
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: OCIRepository
metadata:
name: << $appName >>
namespace: << $tenant >>-<< $env.name >>
annotations:
fluxcd.controlplane.io/id: << $id | quote >>
spec:
interval: 10m
url: oci://registry.example.com/<< $appName >>
ref:
tag: << $env.version >>
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: << $appName >>
namespace: << $tenant >>-<< $env.name >>
annotations:
fluxcd.controlplane.io/id: << $id | quote >>
spec:
interval: 1h
prune: true
sourceRef:
kind: OCIRepository
name: << $appName >>
path: ./
<<- end >>
<<- end >>