Universal Infrastructure as Code Across All Clouds
Write your infrastructure once in elegant YAML syntax and deploy it seamlessly across AWS, Azure, GCP, OCI, Alibaba Cloud, IBM Cloud, and VMware. Deploy virtual machines, OpenShift clusters, and object storage buckets with universal configuration. YamlForge eliminates cloud lock-in by providing a universal interface that generates production-ready Terraform configurations with built-in AI assistance.
Universal infrastructure that works everywhere.
YamlForge breaks down the barriers between cloud providers. Define your infrastructure once using intuitive YAML syntax, and watch it materialize across any cloud environment. Whether you're deploying OpenShift clusters, Kubernetes workloads, or custom applications, YamlForge provides the abstraction layer that makes multi-cloud a reality.
- Universal Cloud Support: Deploy to any major cloud provider with identical syntax
- Intelligent Assistance: AI-powered configuration generation from natural language
- Enterprise Patterns: Pre-built templates for OpenShift, Kubernetes, and production workloads
- Zero Lock-in: Migrate between clouds without rewriting your infrastructure code
- Production Hardened: Built-in security, compliance, and operational best practices
- Developer Experience: Intuitive YAML syntax that abstracts away cloud complexity
This is v1.0 BETA - Feature Complete with Testing Needed
This software is feature complete but requires thorough testing in various environments.
Use with caution in production. Extensive testing recommended before critical deployments.
git clone https://github.com/rut31337/YamlForge.git
cd YamlForge
pip install -r requirements.txt
# Verify Terraform v1.12.0+ is installed
terraform version # Should show v1.12.0 or newerRequirement: Terraform v1.12.0+ required for OpenShift/ROSA support
Interactive chatbot for YamlForge configuration generation:
DemoBuilder is a conversational AI assistant that helps you create YamlForge configurations through natural language. Simply describe your infrastructure needs, and DemoBuilder will generate, validate, and analyze configurations in real-time.
Features:
- Natural language infrastructure generation
- Real-time cost analysis across cloud providers
- Interactive configuration refinement
- Schema validation and auto-correction
- Provider selection and filtering
Deploy DemoBuilder to OpenShift:
export ANTHROPIC_API_KEY="your-api-key"
./demobuilder/deployment/openshift/deploy-s2i.sh📖 Full DemoBuilder Deployment Guide
# infrastructure.yaml
guid: "demo1"
yamlforge:
cloud_workspace:
name: "multi-cloud-demo-{guid}"
description: "Multi-cloud deployment demonstration"
# Deploy instances across multiple clouds using universal locations
# us-east maps to: AWS us-east-1, Azure East US, GCP us-east1, IBM VPC us-east
instances:
- name: "web-aws-{guid}"
provider: "aws"
location: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 3 # Deploy 3 identical instances
- name: "web-azure-{guid}"
provider: "azure"
location: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 2 # Deploy 2 identical instances
- name: "web-gcp-{guid}"
provider: "gcp"
location: "us-east"
flavor: "medium"
image: "RHEL9-latest"
# count: 1 (default - single instance)
# Deploy OpenShift clusters using universal locations
# us-east maps to: AWS us-east-1, Azure East US, GCP us-east1, IBM VPC us-east
openshift_clusters:
- name: "aws-rosa-{guid}"
type: "rosa-classic"
location: "us-east-1"
version: "4.18.19"
flavor: "medium"
- name: "azure-aro-{guid}"
type: "aro"
location: "eastus"
version: "latest"
flavor: "medium"
# Object storage buckets using universal locations
storage:
- name: "app-data-{guid}"
provider: "aws"
location: "us-east"
public: false
versioning: true
encryption: true
tags:
Environment: "production"
- name: "backup-storage-{guid}"
provider: "cheapest" # Auto-select cheapest provider
location: "us-east"
public: false
versioning: false
encryption: true
# Security configuration
security_groups:
- name: "web-access-{guid}"
description: "Allow web traffic"
rules:
- direction: "ingress"
protocol: "tcp"
port_range: "80"
source: "0.0.0.0/0"
- direction: "ingress"
protocol: "tcp"
port_range: "443"
source: "0.0.0.0/0"# cnv-infrastructure.yaml
guid: "cnv01"
yamlforge:
cloud_workspace:
name: "cnv-workspace-{guid}"
description: "CNV virtual machines on OpenShift"
instances:
- name: "cnv-vm-{guid}"
provider: "cnv"
flavor: "small" # 1 vCPU, 1GB RAM
image: "kubevirt/fedora-cloud-container-disk-demo:latest"Environment Setup:
# Set OpenShift cluster credentials
export OPENSHIFT_CLUSTER_URL="https://api.cluster.example.com:6443"
export OPENSHIFT_CLUSTER_TOKEN="your_openshift_token"
# Deploy CNV VM
python yamlforge.py cnv-infrastructure.yaml -d output/ --auto-deploy# Set up environment variables (copy and customize the template)
cp envvars.example.sh envvars.sh
# Edit envvars.sh with your credentials, then:
source envvars.sh
# See Command Line Options section for deployment commandsYamlForge provides a configurable default username across all cloud providers for consistent SSH access:
Default Behavior: All instances use cloud-user as the default SSH username
Customization: Override in defaults/core.yaml or per-instance
# defaults/core.yaml - Organization-wide setting
security:
default_username: "cloud-user" # Change to your preferred usernamePer-instance override example:
guid: "user1"
yamlforge:
cloud_workspace:
name: "custom-user-demo"
description: "Custom username demonstration"
instances:
- name: "my-vm"
provider: "aws"
location: "us-east"
flavor: "small"
image: "RHEL9-latest"
username: "my-custom-user" # Instance-specific overrideProvider Support:
- AWS/Azure: Automatically creates the user via user data scripts
- GCP/OCI/IBM: Native support, no additional scripts needed
- All Providers: Consistent SSH commands and outputs
See Core Configuration Documentation for complete details.
# Analyze configuration without generating Terraform
python yamlforge.py config.yaml --analyze
# Generate Terraform files
python yamlforge.py config.yaml -d output/
# Generate and deploy automatically
python yamlforge.py config.yaml -d output/ --auto-deploy
# Generate with verbose output (shows generated files, detailed AMI search info)
python yamlforge.py config.yaml -d output/ --verbose
# Generate without cloud credentials (uses placeholders, skips dynamic lookups, mainly for testing/development)
python yamlforge.py config.yaml -d output/ --no-credentialsAvailable Flags:
--analyze: Analyze configuration and show provider selections, cost analysis, and mappings without generating Terraform-d, --output-dir: Specify output directory for generated Terraform files (required unless using--analyze)--auto-deploy: Automatically deploy infrastructure after generating Terraform (cannot be used with--analyze)--verbose: Show detailed output including generated files and dynamic lookups--no-credentials: Skip cloud credential validation and use placeholders (mainly for testing/development, may result in unusable Terraform)
Explore options without generating Terraform: Perfect for AI chatbots and exploring configurations:
# Analyze what providers would be selected and their costs
python yamlforge.py my-config.yaml --analyzeExample Analysis Output:
================================================================================
YAMLFORGE CLOUD ANALYSIS
================================================================================
Global provider exclusions: vmware, alibaba (excluded from cost comparison)
Global unexcluded providers: aws, azure, gcp, ibm_vpc, ibm_classic, oci
INSTANCES (2 found):
----------------------------------------
1. web-server-test1:
Provider: cheapest (aws)
Region: us-east (us-east1)
Size: medium (t3.medium)
Image: RHEL9-latest (RHEL-9.*)
Cost analysis for instance 'web-server-test1':
aws: $0.0416/hour → $0.0312/hour (25.0% discount) (t3.medium, 2 vCPU, 4GB) ← SELECTED
gcp: $0.0335/hour (e2-medium, 1 vCPU, 4GB)
azure: $0.0752/hour (Standard_B4ms, 4 vCPU, 16GB)
2. gpu-worker-test1:
Provider: cheapest-gpu (gcp)
Region: us-east (us-east1)
GPU Count: 1
GPU Type: NVIDIA T4
GPU Flavor: n1-standard-4-t4
Image: RHEL9-latest (rhel-cloud/rhel-9)
GPU-optimized cost analysis for instance 'gpu-worker-test1':
gcp: $0.3500/hour (n1-standard-4-t4, 4 vCPU, 15GB, 1x NVIDIA T4) ← SELECTED
aws: $0.5260/hour → $0.3945/hour (25.0% discount) (g4dn.xlarge, 4 vCPU, 16GB, 1x NVIDIA T4)
REQUIRED PROVIDERS:
----------------------------------------
• aws
• gcp
Perfect for AI Chatbots:
- "What's the cheapest GPU instance?"
- "What would a medium server cost on different clouds?"
- "What providers do I need for this configuration?"
- "Show me the mapped regions and flavors for this configuration"
DemoBuilder - Conversational Infrastructure Assistant: YamlForge includes DemoBuilder, a Streamlit-based conversational AI that transforms natural language into YamlForge configurations with advanced context-aware modification capabilities:
# Run the interactive AI assistant
cd demobuilder
streamlit run app.pyExample Conversations:
- "I need 3 RHEL VMs on AWS with SSH access"
- "Deploy a small ROSA cluster for development"
- "Create the cheapest GPU instance for machine learning"
- "Add an OpenShift HCP cluster to my existing infrastructure"
- "Add a bastion host to my current setup"
- "Change all instances to use the cheapest provider"
- "Remove one VM and add monitoring infrastructure"
Advanced Features:
- Pure AI-Driven Modifications: Context-aware configuration changes without static keyword matching
- Natural Language Processing: Describe infrastructure in plain English with intelligent intent recognition
- Real-time Schema Validation: Auto-validates and fixes configurations against YamlForge schema
- Live Cost Analysis: Direct integration with YamlForge
--analyzemode for instant cost feedback - Interactive Refinement: Seamlessly modify existing configurations through conversation
- Multi-cloud Support: All 11 YamlForge providers with intelligent cost optimization
- Preservation Logic: Maintains existing infrastructure while adding only requested changes
- Smart Instance Naming: Automatically generates meaningful names based on context (bastion-host, web-server, database, etc.)
Configuration Modification Examples:
Initial: "Deploy a ROSA HCP cluster"
→ Creates ROSA HCP cluster configuration
Follow-up: "Add a bastion host"
→ Preserves existing cluster, adds bastion-host instance with appropriate configuration
Follow-up: "Add monitoring and a database server"
→ Preserves cluster and bastion, adds monitoring-server and database instances
Follow-up: "Make everything use the cheapest providers"
→ Updates all components to use cost-optimized providers while maintaining functionality
Training AI to Use YamlForge:
Provide the AI with our JSON schema (docs/yamlforge-schema.json) and real examples from the examples/ directory. Emphasize the required 5-character GUID, valid provider names, and exact field structure. See AI Training Guide for comprehensive training materials.
Use AI assistants to generate YamlForge configurations from natural language:
# Ask your AI assistant:
"Create a YamlForge YAML configuration for:
'Production OpenShift cluster on AWS with monitoring and a sample web application'"
# AI generates valid YAML following our [schema](docs/yamlforge-schema.json)
# Save the output and analyze/deploy with YamlForge
python yamlforge.py ai-generated-config.yaml --analyze # See what it will do
python yamlforge.py ai-generated-config.yaml -d output/ --auto-deploy # Deploy it
## Real-World Scenarios
### Multi-Cloud Strategy
Deploy identical infrastructure across multiple clouds for redundancy and compliance:
```yaml
guid: "prod0"
yamlforge:
cloud_workspace:
name: "production-multi-cloud-{guid}"
description: "Production deployment across multiple clouds"
instances:
- name: "app-aws-{guid}"
provider: "aws"
location: "us-east"
flavor: "large"
image: "RHEL9-latest"
- name: "app-azure-{guid}"
provider: "azure"
location: "us-east"
flavor: "large"
image: "RHEL9-latest"
- name: "app-gcp-{guid}"
provider: "gcp"
location: "us-east"
flavor: "large"
image: "RHEL9-latest"Seamlessly migrate workloads between cloud providers:
guid: "mig01"
yamlforge:
cloud_workspace:
name: "migration-to-aws-{guid}"
description: "Migrating from Azure to AWS"
instances:
- name: "migrated-app-{guid}"
provider: "aws" # Migrate from Azure to AWS
location: "us-east"
flavor: "medium"
image: "RHEL9-latest"No need to memorize provider-specific instance types! YamlForge automatically maps your CPU and memory requirements to the appropriate instance type for each cloud:
guid: "flav0"
yamlforge:
cloud_workspace:
name: "flavor-mapping-{guid}"
description: "Demonstrating CPU/memory to flavor mapping"
instances:
- name: "web-server-{guid}"
provider: "aws"
location: "us-east"
cores: 2
memory: 4096 # MB - YamlForge selects t3.medium automatically
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "azure"
location: "us-east"
cores: 4
memory: 8192 # MB - YamlForge selects Standard_D2s_v3 automatically
image: "RHEL9-latest"
- name: "database-{guid}"
provider: "gcp"
location: "us-east"
cores: 8
memory: 16384 # MB - YamlForge selects e2-standard-8 automatically
image: "RHEL9-latest"Instead of learning:
- AWS: t3.micro, t3.small, t3.medium, m5.large, c5.xlarge...
- Azure: Standard_B1s, Standard_D2s_v3, Standard_E4s_v3...
- GCP: e2-micro, e2-small, e2-standard-8, n2-standard-4...
Just specify: cores: 4, memory: 8192 and YamlForge handles the rest!
Or use simple t-shirt sizing:
guid: "siz01"
yamlforge:
cloud_workspace:
name: "t-shirt-sizing-{guid}"
description: "Using generic small/medium/large sizing"
instances:
- name: "web-server-{guid}"
provider: "aws"
location: "us-east"
flavor: "small" # Generic size - works on all clouds
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "azure"
location: "us-east"
flavor: "medium" # Generic size - works on all clouds
image: "RHEL9-latest"
- name: "database-{guid}"
provider: "gcp"
location: "us-east"
flavor: "large" # Generic size - works on all clouds
image: "RHEL9-latest"Available sizes: nano, micro, small, medium, large, xlarge, 2xlarge, 4xlarge, 8xlarge, 16xlarge
Deploy multiple identical instances using the count field:
guid: "scl01"
yamlforge:
cloud_workspace:
name: "scaling-demo-{guid}"
description: "Instance scaling demonstration"
instances:
- name: "web-server-{guid}"
provider: "aws"
location: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 5 # Deploy 5 identical web servers
- name: "worker-{guid}"
provider: "gcp"
location: "us-east"
cores: 4
memory: 8192
image: "RHEL9-latest"
count: 3 # Deploy 3 identical worker nodesInstance Naming: When count > 1, instances are automatically named with suffixes:
web-server-scale1-1,web-server-scale1-2,web-server-scale1-3, etc.- Each instance gets identical configuration but unique names and resources
Cost Analysis: YamlForge automatically calculates total costs:
- Shows per-instance cost and total cost across all instances
- Includes count multipliers in cost summaries and analysis
YamlForge supports configurable provider-specific discounts for accurate cost analysis in enterprise environments:
Configuration Options:
# defaults/core.yaml - Organization-wide discounts
cost_analysis:
provider_discounts:
"aws": 10 # 10% enterprise agreement discount
"azure": 20 # 20% EA discount
"gcp": 10 # 10% committed use discount
"oci": 25 # 25% promotional discountEnvironment Variable Overrides:
# Environment variables take precedence over core configuration
export YAMLFORGE_DISCOUNT_AWS=15 # 15% AWS discount
export YAMLFORGE_DISCOUNT_AZURE=20 # 20% Azure discount
export YAMLFORGE_DISCOUNT_GCP=10 # 10% GCP discount
export YAMLFORGE_DISCOUNT_OCI=25 # 25% OCI discount
export YAMLFORGE_DISCOUNT_IBM_VPC=18 # 18% IBM VPC discount
export YAMLFORGE_DISCOUNT_IBM_CLASSIC=12 # 12% IBM Classic discount
export YAMLFORGE_DISCOUNT_ALIBABA=30 # 30% Alibaba discount
export YAMLFORGE_DISCOUNT_VMWARE=5 # 5% VMware discountFeatures:
- Percentage-based: Discounts specified as 0-100%
- Environment precedence: Environment variables override core configuration
- Cost analysis integration: Applied to all cost displays and cheapest provider selection
- Input validation: Invalid values show warnings and default to 0%
- Clear display: Shows both original and discounted prices:
$0.0416/hour → $0.0312/hour (25.0% discount)
YamlForge offers two intelligent cost optimization providers:
cheapest - General cost optimization for balanced workloads:
guid: "cst01"
yamlforge:
cloud_workspace:
name: "cost-optimized-{guid}"
description: "Automatically select cheapest provider"
instances:
- name: "api-server-{guid}"
provider: "cheapest" # Finds cheapest instance meeting CPU/memory requirements
location: "us-east"
flavor: "medium" # Must specify size or cores/memory
image: "RHEL9-latest"
- name: "database-server-{guid}"
provider: "cheapest" # CPU/memory only - no GPU needed
location: "us-east"
cores: 4
memory: 8192 # MB
image: "RHEL9-latest"
- name: "ml-training-{guid}"
provider: "cheapest" # Can also optimize GPU workloads with specs
location: "us-east"
cores: 8
memory: 16384 # MB
gpu_type: "NVIDIA V100"
gpu_count: 1
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "cheapest" # Combines t-shirt sizing with cost optimization
location: "us-east"
flavor: "large" # Generic size - YamlForge finds cheapest "large" across all clouds
image: "RHEL9-latest"cheapest-gpu - Specialized GPU cost optimization:
guid: "gpu01"
yamlforge:
cloud_workspace:
name: "gpu-optimized-{guid}"
description: "Cheapest GPU instances across all clouds"
instances:
- name: "gpu-worker-{guid}"
provider: "cheapest-gpu" # Focuses purely on GPU cost, ignores CPU/memory
location: "us-east"
flavor: "medium" # Basic flavor requirement
gpu_type: "NVIDIA T4" # Only GPU requirements needed
gpu_count: 1
image: "RHEL9-latest"Key Differences:
cheapest: Requiressizeorcores/memory, optimizes for overall costcheapest-gpu: Only needsgpu_type/gpu_count, finds cheapest GPU regardless of CPU/memory
Deploy native object storage buckets across all cloud providers with unified configuration:
guid: "str01"
yamlforge:
cloud_workspace:
name: "multi-cloud-storage-{guid}"
description: "Object storage across multiple clouds"
storage:
- name: "data-bucket-{guid}"
provider: "aws"
location: "us-east-1"
public: false
versioning: true
encryption: true
tags:
Environment: "production"
Project: "data-pipeline"
- name: "backup-bucket-{guid}"
provider: "azure"
location: "us-east" # Uses location mapping
public: false
versioning: false
encryption: true
tags:
Environment: "production"
Purpose: "backup"
- name: "archive-bucket-{guid}"
provider: "gcp"
location: "us-central1"
public: false
versioning: true
tags:
Environment: "production"
Purpose: "archive"Cost-Optimized Storage:
guid: "chp01"
yamlforge:
cloud_workspace:
name: "cost-optimized-storage-{guid}"
storage:
- name: "cheapest-bucket-{guid}"
provider: "cheapest" # Automatically selects cheapest provider
location: "us-east"
public: false
versioning: true
encryption: trueStorage Features:
- Universal Configuration: Same YAML works across AWS S3, Azure Blob Storage, GCP Cloud Storage, OCI, IBM COS, and Alibaba OSS
- Public/Private Access: Simple boolean flag for public read access control
- Versioning Support: Enable object versioning for data protection
- Encryption by Default: Server-side encryption enabled automatically
- Cost Optimization: Use
cheapestprovider for automatic cost optimization - Tagging Support: Consistent metadata across all providers
- Location Mapping: Use universal locations or direct cloud regions
Deploy OpenShift clusters optimized for each cloud's native capabilities:
guid: "ocp01"
yamlforge:
cloud_workspace:
name: "enterprise-openshift-{guid}"
description: "Enterprise OpenShift across clouds"
openshift_clusters:
- name: "aws-rosa-{guid}"
type: "rosa-classic"
location: "us-east"
version: "4.18.19"
flavor: "large" # Cluster size (not instance size)
- name: "azure-aro-{guid}"
type: "aro"
location: "us-east"
version: "latest"
flavor: "large" # Cluster size (not instance size)Use the same image names across all cloud providers:
guid: "img01"
yamlforge:
cloud_workspace:
name: "multi-os-deployment-{guid}"
description: "Deploying different operating systems across clouds"
instances:
- name: "web-server-{guid}"
provider: "aws"
location: "us-east"
flavor: "medium"
image: "RHEL9-latest" # Generic name - maps to provider-specific images
- name: "app-server-{guid}"
provider: "azure"
location: "us-east"
flavor: "medium"
image: "Ubuntu2204-latest" # Ubuntu 22.04 LTS - works on all clouds
- name: "db-server-{guid}"
provider: "gcp"
location: "us-east"
flavor: "medium"
image: "Fedora-latest" # Fedora (latest stable) - works on all clouds
- name: "monitoring-{guid}"
provider: "oci"
location: "us-east"
flavor: "medium"
image: "OracleLinux9-latest" # Oracle Linux 9 - works on all cloudsUse simple region names that work across all cloud providers:
# Instead of learning provider-specific regions:
# AWS: us-east-1, Azure: East US, GCP: us-east1, OCI: us-ashburn-1...
# Just use: "us-east" - YamlForge maps to the correct region for each provider
location: "us-east" # Works on all cloudsYamlForge uses generic names that work across all clouds. All mappings are customizable:
Customizable Mappings:
All mappings can be customized in the mappings/ directory:
mappings/images.yaml- Customize image mappingsmappings/locations.yaml- Customize region mappingsmappings/flavors/- Customize instance type mappingsmappings/flavors_openshift/- Customize OpenShift-specific mappings
Unbiased and Transparent:
YamlForge is not biased toward any specific operating system image or cloud provider. We only use information freely available on the internet to determine costs and make recommendations. Users can add their own operating system images in the mappings/images.yaml file to customize the available options for their deployments.
- AWS - Native EC2, VPC, Security Groups, ROSA clusters
- Azure - Virtual Machines, VNets, Network Security Groups, ARO clusters
- GCP - Compute Engine with dynamic image discovery
- IBM Cloud - VPC Gen 2 and Classic Infrastructure (Configuration)
- Oracle Cloud (OCI) - Compute instances and networking
- Alibaba Cloud - ECS instances and VPC
- VMware vSphere - Virtual machines and networking
- CNV - Container Native Virtualization (KubeVirt) for Kubernetes and OpenShift clusters with automatic operator validation
- ROSA (Classic & HCP) - Red Hat OpenShift Service on AWS
- ARO - Azure Red Hat OpenShift
- OpenShift Dedicated - Managed OpenShift clusters
- Self-Managed - Custom OpenShift deployments
- HyperShift - Hosted control planes
- Kubernetes KubeVirt - Upstream KubeVirt operator support
- OpenShift CNV - Red Hat CNV operator with enhanced features
- Automatic Validation - Kubernetes API-based operator validation
- Environment Variables - Direct cluster access via
OPENSHIFT_CLUSTER_URLandOPENSHIFT_CLUSTER_TOKEN - Namespace Management - Automatic namespace creation and CNV enablement
- DataVolume Support - Dynamic image discovery from DataVolumes
- Cost Optimization - Minimal cost since VMs use local cluster resources
- Universal Cloud Support: Deploy to any major cloud provider with identical syntax
- Intelligent Assistance: AI-powered configuration generation from natural language
- Enterprise Patterns: Pre-built templates for OpenShift, Kubernetes, and production workloads
- Zero Lock-in: Migrate between clouds without rewriting your infrastructure code
- Production Hardened: Built-in security, compliance, and operational best practices
- Developer Experience: Intuitive YAML syntax that abstracts away cloud complexity
- Cost Optimization: Automatic cheapest provider selection
- GPU Support: Complete GPU instance support with cost analysis
- GUID-Based: Unique deployment identification (5-char required)
- Auto-Discovery: Automatic flavor recommendation
- Enterprise Security: Red Hat Cloud Access, service accounts
- Smart Detection: Only includes Terraform providers you use
- Unified Deployment: Single command deploys infrastructure and OpenShift clusters
- ROSA Integration: Automated ROSA account role creation via CLI
- CNV Integration: Kubernetes API-based validation and deployment for virtual machines
Your Vision → YAML Definition → Universal Processing → Provider-Specific Terraform → Multi-Cloud Deployment
YamlForge acts as the intelligent translation layer between your infrastructure vision and the reality of multi-cloud deployment.
- Getting Started
- DemoBuilder AI Assistant - Conversational infrastructure configuration
- Configuration Reference
- AI Training Guide
- Multi-Cloud Examples
- OpenShift Deployment
- CNV Provider
Help us build the future of universal infrastructure. See our Contributing Guide.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Patrick T. Rutledge III
Project Link: https://github.com/rut31337/YamlForge