Skip to content

Commit 30d3433

Browse files
sylvainsfbrooke-hamiltonytimocinlakshmimsftvishwahiremat
authored
Download terraform default (#10019)
# Description This pull request includes a single change to the `deploy/Chart/values.yaml` file. It enables Terraform binary pre-downloading during pod startup by setting the `terraform.enabled` property to `true`. ## Type of change <!-- Please select **one** of the following options that describes your change and delete the others. Clearly identifying the type of change you are making will help us review your PR faster, and is used in authoring release notes. If you are making a bug fix or functionality change to Radius and do not have an associated issue link please create one now. --> - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: <!-- This checklist uses "TaskRadio" comments to make certain options mutually exclusive. See: https://github.com/mheap/require-checklist-action?tab=readme-ov-file#radio-groups For details on how this works and why it's required. --> - An overview of proposed schema changes is included in a linked GitHub issue. - [ ] Yes <!-- TaskRadio schema --> - [X] Not applicable <!-- TaskRadio schema --> - A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ ] Yes <!-- TaskRadio design-pr --> - [X] Not applicable <!-- TaskRadio design-pr --> - The design document has been reviewed and approved by Radius maintainers/approvers. - [ ] Yes <!-- TaskRadio design-review --> - [X] Not applicable <!-- TaskRadio design-review --> - A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ ] Yes <!-- TaskRadio samples-pr --> - [X] Not applicable <!-- TaskRadio samples-pr --> - A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ ] Yes <!-- TaskRadio docs-pr --> - [X] Not applicable <!-- TaskRadio docs-pr --> - A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR. - [ ] Yes <!-- TaskRadio recipes-pr --> - [X] Not applicable <!-- TaskRadio recipes-pr --> --------- Signed-off-by: Sylvain Niles <[email protected]> Signed-off-by: ytimocin <[email protected]> Signed-off-by: Brooke Hamilton <[email protected]> Signed-off-by: lakshmimsft <[email protected]> Signed-off-by: Vishwanath Hiremath <[email protected]> Co-authored-by: Brooke Hamilton <[email protected]> Co-authored-by: ytimocin <[email protected]> Co-authored-by: Lakshmi Javadekar <[email protected]> Co-authored-by: Vishwanath Hiremath <[email protected]>
1 parent 5462517 commit 30d3433

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,11 @@ tmp-*
6868
hack/bicep-types-radius/generated/**/*.md
6969

7070
# Bicep extensions
71-
*.tgz
71+
*.tgz
72+
73+
# Debug files
74+
debug_files/*
75+
76+
# Demo app
77+
demo/*
78+
demo

deploy/Chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ global:
3636
# This avoids downloading terraform on each recipe execution
3737
terraform:
3838
# Enable terraform binary pre-downloading during pod startup
39-
enabled: false
39+
enabled: true
4040
# URL for downloading Terraform binary
4141
# Leave empty to automatically fetch the latest version from HashiCorp
4242
# Or provide a complete direct download URL for custom sources

0 commit comments

Comments
 (0)