Spaces:
Configuration error
Configuration error
File size: 1,087 Bytes
ebf4715 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | openenv: "1.0"
name: "ConfigDebuggerEnv"
description: "Real-world configuration debugging environment for Docker Compose, Kubernetes, and ML training configs"
version: "1.0.0"
author: "Basavesh"
license: "MIT"
tags:
- "openenv"
- "devops"
- "configuration"
- "debugging"
- "real-world"
endpoints:
reset: "/reset"
step: "/step"
state: "/state"
tasks: "/tasks"
spaces:
observation: "ConfigObservation"
action: "ConfigAction"
reward: "ConfigReward"
state: "EnvState"
tasks:
- id: "easy_docker"
name: "Docker Compose Repair"
description: "Fix syntax and schema mistakes in docker-compose.yml"
difficulty: "easy"
max_steps: 15
- id: "medium_k8s"
name: "Kubernetes Deployment Repair"
description: "Fix Kubernetes type, structure, and resource spec issues"
difficulty: "medium"
max_steps: 18
- id: "hard_ml_config"
name: "ML Training Config Stabilization"
description: "Fix interdependent hyperparameter and hardware consistency issues"
difficulty: "hard"
max_steps: 22
|