Valqore DocsDocs
Cloud OperationsHybrid Cloud Support

Hybrid Cloud Support

Cloud Operations for VMs, ECS/Fargate, on-prem servers, and mixed infrastructure.

Hybrid Cloud Support

Valqore works with or without Kubernetes. It auto-detects your infrastructure and runs the appropriate checks.

Usage

# Auto-detect and checkup
valqore checkup
 
# Use Terraform state as inventory
valqore checkup --inventory-source terraform --state terraform.tfstate
 
# Combine Terraform state with manual inventory
valqore checkup \
  --inventory-source terraform --state terraform.tfstate \
  --inventory .valqore/inventory.yaml

On-Prem Inventory

Define hosts in .valqore/inventory.yaml:

# .valqore/inventory.yaml
hosts:
  - name: web-01
    address: 10.0.1.10
    role: web-server
    os: ubuntu-22.04
    tags:
      environment: production
    checks:
      - type: http
        port: 443
        path: /healthz
      - type: disk
        threshold: 85%
 
  - name: db-primary
    address: 10.0.2.10
    role: database
    os: rhel-9
    checks:
      - type: tcp
        port: 5432
      - type: disk
        threshold: 70%
 
groups:
  web-servers:
    hosts: [web-01]
    checks:
      - type: ssl-expiry
        warn-days: 30
 
  databases:
    hosts: [db-primary]
    checks:
      - type: backup-age
        max-hours: 24
Was this helpful?
Valqore Docs
Copyright © Cruip. All rights reserved.