- Default configuration: The base, system-provided configuration. You can override default values, but you can’t delete default keys.
- Custom configuration: Your own additional keys and values. You can add, modify, or delete these keys.
Prerequisites
- An APC control plane is installed and reachable.
- You have System Admin permissions in the APC UI or access to the Houston API.
- The data plane cluster is healthy and accessible from the control plane.
Update your cluster
You can define cluster configurations when you first register a cluster or later by updating the cluster via the UI or Houston API.- Registration: The form includes an optional Cluster Override field. You can supply initial overrides when registering.
- Edit: The cluster page contains your overall cluster information and a Deployment Configuration section.
- Cluster Information: View and edit the cluster name.
- Current Configuration: Read-only view of the default configurations.
- Configuration Override: Editable area where you provide override values for base keys and/or add custom keys.
- After you add overrides, the Current Configuration shows a read-only, git-style diff of added/modified values.
- Houston API: To automate cluster management, you can use the
updateClusterGraphQL mutation in the Houston API playground athttps://houston.<base-domain>/v1/playgroundor using a script that leveragescurlor a GraphQL library in a programming language.
deploymentsConfigOverride as JSON to create a ConfigMap for each Airflow Deployment:
deploymentsConfigOverride deep-merges object keys into the existing cluster configuration, so separate API calls accumulate. Arrays, such as extraObjects, are always replaced in full. To add another array entry, re-send the complete array.
After you run the mutation, individually redeploy each affected Deployment for the changes to take effect.
Update cluster information
Only the Cluster name is editable as a cluster property in the Cluster Information section. You must use Configuration Override to make changes to Deployment configurations by overriding the base Deployment configuration.Override base configuration
Add your own keys and values to tailor behavior per cluster. You can’t delete default keys, but you can override their values to make custom configurations.1
Select cluster
In the Clusters page, select the cluster where you want to override a configuration.
2
Find configuration to review
Search for the configuration that you want to edit in the Current Configuration.
3
Edit Configuration Override
Click Edit to unlock Configuration Override. You can now make override edits.
4
Add new key and value
Add your new key and value to the Configuration Override.
- To delete an override or a custom property, set its value to
nullin the Configuration Override. Do not remove the key; setting it tonullremoves the property. If you try to configure a default key withnullin your Configuration Override, Astro Private Cloud does not allow you to save your changes, and prompts you to update your overrides with an accepted value. - Base Configuration keys cannot be deleted. You can only override their values because base configurations are the operational defaults.
Carefully check your configuration updates before you update your cluster, as these configuration changes can impact all cluster users.
5
Apply changes
Click Update cluster to apply your changes.
Deployment config updates are not applied until each Deployment is individually updated.
6
Verify changes
- Confirm cluster status is Healthy on the Clusters page in the Astro UI.
- For Airflow Deployments in your updated cluster, trigger a small change and confirm Commander applies it as expected.
- In Prometheus on the control plane, verify the cluster appears in federated targets.
Additional notes
- Cluster overrides apply to
deployments.*values for the selected data plane cluster. - In APC 1.x, cluster override is the only override layer after platform config.
- Settings outside
deployments.*stay invalues.yaml, typically underastronomer.houston.config, and require a Helm upgrade. - Use Apply a config change for platform-level values and Configure Astro Private Cloud for the full hierarchy.
Best practices
- Keep overrides minimal. Prefer Base Config unless a cluster truly deviates.
- Use consistent naming and comments for custom keys.
- Review the diff in Current Configuration to validate the final effective settings before you Update Cluster.