Inputs let you customize how an application deploys without modifying its underlying source. Akua provides a wizard-driven editor that lets you configure applications, manage changes, and control how updates roll out to installations. For most customers, the dashboard’s wizard is all you need. For advanced edits — patching individual fields, adding sidecars, overriding what the schema doesn’t expose — see Customize an installation via git. Both surfaces edit the same underlying state: the wizard writes to your installation’sDocumentation Index
Fetch the complete documentation index at: https://docs.akua.dev/llms.txt
Use this file to discover all available pages before exploring further.
inputs.yaml, and a git push to that same repository is equivalent.
Understanding inputs
Inputs are YAML configuration that drive how an application is rendered for a specific installation. They control everything from resource allocations and scaling behavior to application-specific settings and networking configuration. When you customize inputs, Akua:- Writes the change to the installation’s
inputs.yaml - Re-renders the deployment manifests against the package’s composition logic
- Validates inputs against the package’s input schema when available
- Commits the new render to the installation’s package repository
The wizard and git push are two views over the same state. UI edits and git pushes converge on the same
inputs.yaml.Multi-source configuration
Many applications combine multiple package sources — for example, a web application with a database, cache, and monitoring stack. Akua’s editor provides a tabbed interface where you configure each source independently while applying all changes in a single transaction.Using the multi-source editor
When editing inputs for products or installations with multiple sources:- Switch between sources using the tabs at the top of the editor
- Edit each source independently in YAML or form view
- Track modifications with visual indicators (orange dots) on tabs that have been changed
- Apply all changes at once with the “Apply All” button
- Modified badge - Count of sources with unsaved changes
- Source tabs - All sources displayed as switchable tabs
- YAML/Form toggle - Switch between raw YAML and guided form interface
- Diff highlighting - See exactly what differs from defaults
Product inputs and install inputs
Akua distinguishes between product-level inputs (the package definition shared across installations) and install-level inputs (per-installation customization). Understanding this distinction is crucial for managing updates effectively.Product inputs
Product inputs define the default configuration for all future installations. When you update product inputs:- Package definition updated - The new configuration becomes the default for new installs
- Existing installs unchanged - Current deployments continue running on their current package
- New installs use updated inputs - Future installations get the new defaults
- Manual rollout required - You control when existing installs upgrade
- Setting default configuration for all customers
- Preparing new features or settings
- Testing changes before wide rollout
- Managing staged deployments
Standalone install inputs
Standalone installations have their own package definition (1:1 relationship). When you update inputs for a standalone install:inputs.yamlupdated immediately - Changes are written to the installation’s repository- Re-rendered - The new configuration is rendered into the installation’s
manifests/ - Application redeploys automatically - The new configuration is applied to your cluster
- Single installation affected - Only this specific install changes
- Configuring customer-specific installations
- Making one-off customizations
- Testing configurations for specific environments
- Managing independent deployments
Product-based install overrides
Product-based installations support per-install input overrides that layer on top of product defaults. When you customize inputs for a product-based install:- Overrides stored separately - Your customizations are saved as install-specific overrides
- Product defaults preserved - The product’s package definition remains unchanged
- Inputs merged automatically - Product defaults + install overrides are merged into
inputs.yaml - Updates persist - Overrides survive product updates
- Application redeploys - The new merged configuration is applied to your cluster
- Customizing installations for specific customers (custom domains, branding, resource limits)
- Enabling customer-specific features or toggles
- Adjusting configurations per environment (production vs staging)
- Maintaining customer settings across product updates
Install overrides always take precedence over product defaults. When you update the product, customer overrides are automatically merged with the new defaults, ensuring customizations persist.
Input layering and merging
Akua uses a layered approach to merge inputs from multiple sources, ensuring predictable and maintainable configurations.Merge order
Inputs are merged in the following order (later layers override earlier ones):- Upstream defaults - Defaults defined in the package’s source
- Product inputs - Defaults configured at the product level
- Install overrides - Customer-specific overrides for product-based installs
- Install metadata - System-generated values like the installation ID, which is available in your package’s composition logic via the install’s metadata context
Deep merging
Akua performs of nested objects:Version management and rollouts
When you update product inputs, Akua records a new product version without affecting existing installations. This gives you precise control over when and how updates roll out to your customers.The update workflow
Viewing available updates
Each product installation shows its current package version and whether updates are available:- Current version badge - Shows the package version currently deployed
- Latest version badge - Shows the newest available version
- Update available indicator - Orange badge when install is behind latest
Rolling out to a single install
To update a specific installation:- Navigate to the product’s installations list
- Click Update on the installation row
- Review the change (current version → latest version)
- Confirm the update
- Testing updates with a pilot customer
- Staggered rollouts across customers
- Customer-requested upgrades
- Selective deployment strategies
Rolling out to all installs
To update all installations at once:- Navigate to the product details page
- Click Update All Installs in the installations section
- Review the update scope (shows count of installations)
- Confirm the bulk update
- Security patches requiring immediate deployment
- Critical bug fixes
- Coordinated feature releases
- Simplified version management
Bulk updates execute in parallel but you can monitor each installation’s progress individually. Failed updates don’t block others from completing.
Editing inputs
For products
- Navigate to your product details page
- Click the Values button in the header
- Configure each source using the tabbed interface:
- Switch between sources using tabs
- Edit in YAML or form view
- Track changes with modification indicators
- Click Apply All to save changes
For product-based installations
- Navigate to the installation details page (must not be the product owner)
- Click the Values button in the header
- Configure each source using the tabbed interface
- You’ll see merged inputs (product defaults + any existing overrides)
- Changes are stored as install-specific overrides
- Click Apply All to save changes
Product owners cannot edit inputs for product-based installations directly (this would affect all customers). They must update the product instead. Only customers (non-owners) can create install-specific overrides.
For standalone installations
- Navigate to the installation details page
- Click the Values button in the header
- Configure each source using the tabbed interface
- Click Apply All to save changes
inputs.yaml and triggers an immediate redeployment with the new configuration.
Status tracking
Akua provides real-time status indicators during input updates:| Status | Description |
|---|---|
| Saving… | Writing updated inputs to the installation repository |
| Packaging… | Rendering the new configuration into the installation’s manifests |
| Deploying… | Applying changes to your cluster (standalone installs only) |
Best practices
Version control strategy
- Update products first - Make package changes before rolling out to installs
- Test with single install - Verify configuration with one customer before bulk updates
- Use semantic versioning - Akua automatically versions packages; treat major updates carefully
- Document changes - Keep notes on what changed in each version
Multi-source configuration
- Configure all sources together - Use the multi-source editor to apply changes atomically
- Review modifications - Check the modified sources count before applying
- Validate YAML syntax - The editor warns about syntax errors before applying
- Use form view for structure - Form view prevents common YAML formatting mistakes
Rollout management
- Pilot test updates - Start with a single installation for new configurations
- Stagger large rollouts - Consider updating installations in batches for large products
- Monitor after updates - Check installation health after rolling out changes
- Keep previous versions - Don’t delete old package versions until all installs are migrated
Install overrides
- Minimize overrides - Only override inputs that truly need to be customer-specific
- Use product defaults - Set sensible defaults at the product level for common configurations
- Document overrides - Keep notes on why specific inputs were overridden for each customer
- Test product updates - Verify that product changes merge correctly with install overrides
- Review periodically - Check if overrides are still necessary as product defaults evolve
Security considerations
- Never commit secrets - Use environment variables and secret management for sensitive data
- Review inputs before applying - Especially when using form view which may expose all fields
- Limit who can update - Product inputs affect all customers; restrict access appropriately
- Audit changes - Every input change is a commit in the installation repository — use git history to track who changed what and when
Common scenarios
Increasing resource limits
Increasing resource limits
Update CPU and memory limits to scale applications. For products, update the product inputs and roll out to installations that need more resources. For standalone installs, update inputs directly.
Enabling features
Enabling features
Many packages use feature flags in inputs. Enable features at the product level, generate a new version, then selectively update installations as customers opt in.
Environment-specific configuration
Environment-specific configuration
Use standalone installations for environment-specific deployments (dev, staging, production). Each can have different inputs while sharing the same base package.
Database connection strings
Database connection strings
Update database URLs or connection parameters by editing inputs. For products, create a new version with updated defaults. For standalone installs, update directly to reconfigure immediately.
Scaling configuration
Scaling configuration
Adjust replica counts, autoscaling settings, and resource requests. Test with a single installation first, then roll out to others once validated.
Customer-specific customizations
Customer-specific customizations
Use per-install input overrides for product-based installations when customers need unique configurations. Navigate to the installation details page and edit inputs to create customer-specific overrides for custom domains, resource limits, feature toggles, or any other settings. These overrides layer on top of product defaults and persist across product updates, giving you the benefits of centralized product management while supporting customer-specific customizations.
Troubleshooting
Changes not applying
If input changes don’t take effect:- Check syntax - Ensure YAML is valid with proper indentation
- Review status - Wait for “Packaging…” status to complete
- Verify rollout - For products, ensure you’ve updated the installations
- Check logs - View application logs for deployment errors in the installation details page
Schema validation errors
If the form view shows validation errors:- Check required fields - Some inputs must be provided
- Verify data types - Ensure numbers, strings, and booleans match schema
- Switch to YAML - Use YAML view for complex configurations
- Consult package docs - Review the package’s documentation for input requirements
Installation not updating
If an installation doesn’t update after rollout:- Review version - Verify the installation is pointing to the new package version
- Check status - Look for errors in the installation details page
- Check deployment - Ensure the application is deploying successfully
Related topics
Products
Create and manage products with configurable inputs.
Deployments
Deploy installations to your infrastructure.
Package generation
How Akua generates packages.
Package versioning
How commit history maps to deployments.