bootstrap/terrraform/main.tf
(As a reference, CIDR blocks follow this format: 10.xx.xx.xx/yy
, the examples below are placeholders.)aws-bootstrap
modules configuration with:gcp-bootstrap
modules configuration with:azure-bootstrap
modules configuration with:[main.tf](http://main.tf)
file at the root of a Terraform folder, or any of the module folders, weβll preserve your Terraform between builds and apply it for you appropriately as changes arise. For configuring a VPC peer, letβs create a new Terraform file called [network.tf](http://network.tf)
and drop the configuration in there for your respective cloud:loadBalancerSourceRanges
attribute on LoadBalancer
services. To configure this, head to your Plural repository and modify ingress-nginx/helm/ingress-nginx/values.yaml
by overlaying:plural deploy --commit "adding ip allowlist"
and it will update the service for you and push the changes upstream to your git repository.internal-nginx
ingress class. Then run plural deploy --commit "update app to use private ingress"
and itβll apply for you.dagster/helm/dagster/values.yaml
:ingressClass
. This will depend on whether the Helm chart is still using the legacy annotation-based ingress class flag or if it has migrated to the new first-class spec field.kubectl delete ingress <ingress-name> -n <app-name>
then plural bounce <app-name>
to speed things along. You can usually find the ingresses in the components tab in our console.