From cloudfleet
This skill should be used when the user asks about "container registry", "CFCR", "push image", "pull image", "registry.cloudfleet.ai", or needs help with container images on Cloudfleet.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cloudfleet:cfcr-overviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When users ask about CFCR or need help with container images, use this reference.
When users ask about CFCR or need help with container images, use this reference.
CFCR (Cloudfleet Container Registry) is a managed OCI-compatible container registry. It provides a secure, private registry for storing and distributing container images alongside your CFKE clusters.
registry.cloudfleet.airegistry.cloudfleet.ai/<organization>/<repository>:<tag>Login to registry:
cloudfleet auth configure-docker
Push an image:
docker tag myapp:latest registry.cloudfleet.ai/myorg/myapp:latest
docker push registry.cloudfleet.ai/myorg/myapp:latest
Pull an image:
docker pull registry.cloudfleet.ai/myorg/myapp:latest
CFKE clusters have built-in authentication to CFCR within the same organization. No imagePullSecrets are needed — just reference the image directly:
containers:
- name: myapp
image: registry.cloudfleet.ai/myorg/myapp:latest
npx claudepluginhub cloudfleetai/cloudfleet-plugin-claude --plugin cloudfleetGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.