What are Infrastructure Providers?
Datum uses a plugin-based architecture to integrate with cloud providers and infrastructure platforms. Infrastructure provider plugins interpret Datum resource definitions (likeWorkload and Network) and translate them into provider-specific resources such as virtual machines, VPCs, and container instances.
This approach allows you to:
Provider Agnostic
Define your infrastructure once using Datum resources, then deploy across multiple providers without changing your configuration
Kubernetes Native
Leverage familiar Kubernetes patterns and tooling like kubectl, kustomize, and Helm to manage infrastructure
Extensible
Build custom provider plugins to integrate with any infrastructure platform or internal systems
Declarative
Declare your desired infrastructure state and let Datum operators reconcile the actual state automatically
How Provider Plugins Work
Provider plugins are Kubernetes operators that watch for Datum resource changes and reconcile them against the target infrastructure platform.Define Resources
You create Datum resources like
Workload or Network using standard Kubernetes manifests or tools like kubectl.Plugin Reconciliation
The provider plugin watches for these resources and interprets them based on placement rules and provider-specific configuration.
Infrastructure Provisioning
The plugin creates and manages the actual infrastructure resources (VMs, networks, load balancers) in the target provider.
Supported Features
Datum provider plugins typically support the following capabilities:Compute Management
- VM-based workloads: Deploy virtual machine instances with custom OS images from an image library
- Container-based workloads: Deploy sandboxed container instances using any OCI-compliant container image
- Placement control: Define where instances should run across locations and providers
- Scaling behavior: Configure auto-scaling and instance count management
Network Management
- VPC connectivity: Create and manage Virtual Private Cloud (VPC) networks
- IPAM: Automated IP Address Management for subnets and instances
- Multi-network attachment: Attach instances to one or more networks
- Network policy: Apply network security policies and firewall rules
Storage Management
- Volume mounts: Attach persistent volumes to workload instances
- Storage classes: Support for different storage types and performance tiers
Available Providers
Google Cloud Platform (GCP)
Official GCP provider supporting VM instances, container instances, and VPC networking
Custom Providers
Build your own provider plugin for AWS, Azure, or custom infrastructure platforms
Architecture
Datum infrastructure providers follow the Kubernetes operator pattern:Workload resource and creates:
- Google Compute Engine instances or Cloud Run instances
- Instance templates with the specified container image
- Network interfaces attached to Datum VPC networks
- Health checks and auto-scaling configurations
Next Steps
GCP Provider
Deploy workloads and networks on Google Cloud Platform
Build Custom Providers
Create your own infrastructure provider plugin
Workload Concepts
Learn more about Datum’s Workload resource
Network Concepts
Understand how Datum manages networks