Skip to main content
Astro Private Cloud uses Helm to install and manage some platform-level settings that apply to all users and Deployments. The Astronomer Helm chart includes configurations for areas such as:
  • Identity provider integrations
  • Registry backends
  • Resource allocation limits
You can apply any platform customizations to your cluster using a YAML configuration. values.yaml contains settings for both the Astronomer Helm chart, as well as Helm charts for system components like Elasticsearch and nginx. Using Helm allows you to keep all of your configurations in a single file that you can version and store securely. Use this document to learn how to retrieve your existing Helm configuration, modify configurations, and apply your changes to your cluster.
Many settings under astronomer.houston.config.deployments.* aren’t applied through Helm at all — they’re cluster, workspace, or Deployment config, set through the Configuration Override section of the Astro UI or the updateCluster/updateWorkspaceDeploymentsConfig/updateDeploymentConfig APIs instead. Editing values.yaml only seeds the platform default the first time a cluster is created; it doesn’t update an already-provisioned cluster. Before you edit values.yaml for anything under deployments.*, read Configure Astro Private Cloud and Config governance to confirm Helm is the right layer, or see Override data plane cluster configurations if it isn’t.
1

Retrieve your current cluster configuration

The best way to add or modify configurations is to start with your existing values.yaml file. To retrieve the current values.yaml file of an existing APC cluster, run the following command:
This command overwrites any file called values.yaml in your current directory.
Alternatively, your team might use version management to store your existing Helm configuration. In this case, retrieve, update, and store your configuration file according to your team’s workflows. If your configuration file includes secrets, ensure you encrypt it before storing it in version control.
2

Update your configurations

  1. Create a copy of your values.yaml file so that you can compare your existing configuration to your new configuration.
  2. In your copied file, update the values for the configurations you want to change. To update a configuration you haven’t already specified, copy the corresponding default values from the relevant default Helm chart into your values.yaml file and then modify the value.
When you have finished updating the configuration, ensure that the configurations have the same relative order and indentation as they do in the default configuration file. If they don’t, your changes might not be properly applied. The name of the Helm charts you’re modifying should be the first items in the file, such as in the following example:
Identity provider settings and other platform-wide defaults live in astronomer.houston.config. Settings under astronomer.houston.config.deployments.* are layered — see the callout at the top of this page before assuming a deployments.* change belongs here.
3

Push changes to your cluster

  1. Copy your platform namespace and release name. These are both likely to be astronomer. Find your platform release name in your list of active namespaces by running the following command:
    To locate your platform release name, run:
  2. Save your updated values.yaml file and run the following command to apply it as a Helm upgrade:
    Setting astronomer.houston.upgradeDeployments.enabled=false ensures that Apache Airflow components in Deployments don’t restart during your upgrade.
  3. Run the following command to confirm that your configuration was applied: