Metadata-Version: 2.4
Name: kubelingo
Version: 0.1.11
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: boto3>=1.26.0
Requires-Dist: click>=8.0.0
Requires-Dist: colorama>=0.4.4
Requires-Dist: kubernetes>=25.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: questionary>=1.10.0
Requires-Dist: python-dotenv>=0.21.0
Requires-Dist: pytest>=6.0 ; extra == 'test'
Requires-Dist: requests>=2.28.0 ; extra == 'test'
Requires-Dist: llm>=0.14.0 ; extra == 'llm'
Requires-Dist: llm-openai>=0.5.0 ; extra == 'llm'
Requires-Dist: openai>=1.0.0 ; extra == 'llm'
Provides-Extra: test
Provides-Extra: llm
License-File: LICENSE
Summary: CLI quizzes for kubectl commands and Kubernetes YAML editing
Home-Page: https://github.com/josephedward/kubelingo
Author-email: kubelingo Contributors <noreply@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/josephedward/kubelingo

 # kubelingo

[![Kubelingo CI](https://github.com/josephedward/kubelingo/actions/workflows/ci.yml/badge.svg)](https://github.com/josephedward/kubelingo/actions/workflows/ci.yml)

kubelingo is a modular CLI package for mastering `kubectl` commands, Kubernetes YAML editing, and cloud-backed EKS exercises.

## Features

- **Command Quiz Mode**: Categorized kubectl questions with randomized order
- **YAML Editing Mode**: Interactive Vim-based YAML editing with semantic validation
- **Vim Commands Quiz**: Master essential Vim commands for YAML editing.
- **CKAD Exam Prep**: Extensive exercises covering all CKAD exam topics.
- **Semantic Validation**: YAML answers are graded by meaning, not just text matching.
- **Performance Tracking**: Session history and progress statistics are stored locally.
- **Sandboxed Environments**: Practice in a safe PTY shell or an isolated Docker container.
- **LLM Integration**: Get optional, detailed explanations for quiz questions (requires an OpenAI API key).

## YAML Editing Mode

Practice real-world Kubernetes scenarios by editing YAML manifests in your local editor (`$EDITOR`) with intelligent validation.

```bash
# Launch Kubelingo's interactive menu
kubelingo
```

From the menu, navigate to `K8s (preinstalled)` -> `YAML Editing Quiz`.

### How It Works

1.  **Template Provided**: You start with a skeleton YAML file.
2.  **Edit in Your Editor**: The file automatically opens in Vim (or your configured `$EDITOR`).
3.  **Semantic Validation**: After you save and exit, your solution is validated by its semantic structure, not by an exact text match. Key order and comments don't matter.
4.  **Immediate Feedback**: Get specific error messages and hints for corrections.
5.  **Multiple Attempts**: You get multiple tries per question with helpful guidance.

### Validation Features

- **Syntax Checking**: Catches YAML parsing errors with line numbers
- **Semantic Comparison**: Compares parsed objects, not raw text
- **Field Validation**: Checks required Kubernetes fields (apiVersion, kind, metadata)
- **Smart Hints**: Specific guidance on what's missing or incorrect
- **Flexible Grading**: Different key orders, spacing, and styles all accepted


## Usage Examples

```bash
# List available categories
kubelingo --list-categories

# Launch interactive menu (recommended)
kubelingo

# Run a 10-question quiz on Pod Management (using flag)
kubelingo --k8s -n 10 -c "Pod Management"
# Or equivalently via module alias:
kubelingo k8s -n 10 -c "Pod Management"

# Run a quiz on only the questions you've flagged for review
kubelingo --k8s --review-only

# View performance history
kubelingo --history
```

See `docs/ARCHITECTURE.md` for a high-level overview of the project structure.


## Question Types

### Standard Questions
Traditional kubectl command questions with text-based answers.

### YAML Editing Questions
Hands-on YAML editing with these fields:
- `question_type`: "yaml_edit"
- `prompt`: Task description
- `starting_yaml`: Template with TODO comments
- `correct_yaml`: Expected solution for validation
- `explanation`: Learning objectives

Example:
```json
{
  "question_type": "yaml_edit",
  "prompt": "Create a Pod named 'web-server' using nginx:1.20",
  "starting_yaml": "apiVersion: v1\nkind: Pod\nmetadata:\n  name: # TODO\n...",
  "correct_yaml": "apiVersion: v1\nkind: Pod\nmetadata:\n  name: web-server\n...",
  "explanation": "Basic pod creation exercise"
}
```

## Installation

To install `kubelingo` from PyPI, simply run:

```bash
pip install kubelingo
```

### Development Setup

If you want to contribute to the project, follow these steps to set up a development environment.

1.  Clone the repository:
    ```bash
    git clone https://github.com/josephedward/kubelingo.git
    cd kubelingo
    ```

2.  Install dependencies and build the Rust extension for development:
    ```bash
    pip install -r requirements.txt
    maturin develop
    ```
    This command compiles the Rust extension and installs `kubelingo` in editable mode.

## Releasing to PyPI

To publish a new version to PyPI, you first need to [generate an API token](https://pypi.org/help/#apitoken) from your PyPI account settings.

The recommended way to provide credentials for publishing is through environment variables. `maturin` uses `twine` for uploading, which expects the API token to be provided as the password with the username `__token__`.

```bash
# Set credentials in your shell
export TWINE_USERNAME="__token__"
export TWINE_PASSWORD="pypi-your-api-token-goes-here"

# Build and publish the package
maturin build --release
maturin publish
```

## Requirements

- Python 3.8+
- Rust toolchain (install from [rustup.rs](https://rustup.rs/))
- `pip` and `maturin`
- Vim (with `+clientserver` support for integration tests) or preferred editor (set via `$EDITOR`)
- `kubectl`, `eksctl` (for command validation and cloud exercises)
- Go and GoSandbox CLI (for cloud exercises)
  
### Container Sandbox Mode

Kubelingo can launch a Docker container to provide an isolated environment similar to the CKAD exam:

- **Isolation**: No network access (container run with `--network=none`), only the pre-installed tools (`bash`, `vim`, `kubectl`).
- **Reproducibility**: Consistent environment across machines.
- **Requirements**: Requires Docker Engine to be installed and running. (Tip: run `docker info` to verify your Docker setup.)

To enter the container sandbox, run:

```bash
kubelingo --sandbox-mode container
```

On first run, Kubelingo will build a local Docker image (`kubelingo/sandbox:latest`) from
`docker/sandbox/Dockerfile`. This requires internet access to download the base image and kubectl binary.
Subsequent runs reuse the built image.

Inside the container, your current working directory is mounted at `/workspace`, so you can run
`kubelingo` and kubectl commands against exercises as usual. Exit with `exit` or Ctrl-D.

## CKAD Exam Coverage

Comprehensive coverage of all CKAD exam domains:

- **Core Concepts (13%)**: Pods, ReplicaSets, Deployments
- **Configuration (18%)**: ConfigMaps, Secrets, Environment Variables  
- **Multi-Container Pods (10%)**: Sidecar, Ambassador, Adapter patterns
- **Observability (18%)**: Probes, Logging, Monitoring, Debugging
- **Pod Design (20%)**: Labels, Selectors, Annotations, Jobs, CronJobs
- **Services & Networking (13%)**: ClusterIP, NodePort, Ingress
- **State Persistence (8%)**: Volumes, PersistentVolumes, Storage Classes
  
For quick reference on multi-step Killercoda CKAD quiz tasks, see [Killercoda CKAD Quick Reference](docs/killercoda_ckad_cheat_sheet.md).

## File Structure

A high-level overview of the monorepo structure:

```
.
├── kubelingo/            # Core Python application package
│   ├── cli.py            # Main CLI entrypoint with argparse/questionary
│   ├── bridge.py         # Python-Rust bridge
│   ├── sandbox.py        # PTY and Docker sandbox launchers
│   ├── constants.py      # Shared file paths and constants
│   ├── utils/            # Shared utilities (e.g., UI helpers)
│   └── modules/          # Pluggable quiz modules (kubernetes, custom, etc.)
├── src/                  # Rust source code for high-performance components
│   ├── main.rs           # Rust CLI entrypoint
│   ├── cli.rs            # clap-based CLI argument parsing
│   └── lib.rs            # PyO3 native extension functions
├── question-data/        # Quiz content in JSON, YAML, and Markdown
├── tests/                # Pytest tests for Python code
└── docs/                 # Project documentation
```

## Creating Custom Questions

### Standard Questions
```json
{
  "prompt": "Create a pod named nginx",
  "response": "kubectl run nginx --image=nginx",
  "explanation": "Basic pod creation command"
}
```

### YAML Editing Questions
```json
{
  "question_type": "yaml_edit",
  "prompt": "Create a ConfigMap with database configuration",
  "starting_yaml": "apiVersion: v1\nkind: ConfigMap\nmetadata:\n  name: # TODO\ndata:\n  # TODO",
  "correct_yaml": "apiVersion: v1\nkind: ConfigMap\nmetadata:\n  name: db-config\ndata:\n  host: localhost\n  port: \"5432\"",
  "explanation": "ConfigMap creation with key-value data"
}
```



## License

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

## Scripts Consolidation

All standalone scripts in the `scripts/` directory are now accessible through the consolidated `toolbox.py` entrypoint.

```bash
# List available commands
scripts/toolbox.py

# Run a specific script, for example:
scripts/toolbox.py generate_kubectl_ops --output question-data/yaml/kubectl_operations.yaml
```

Available commands:
- ckad
- cli_quiz
- generate_kubectl_ops
- generate_resource_ref
- generate_manifests
- generate_validation
- manage_questions
- organize_question_data
- enrich_questions
- ai_enrich
- install_kubelingo   Install kubelingo from PyPI and configure OpenAI key

For help on a specific command, run:

```bash
scripts/toolbox.py <command> --help
```

