-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1471 from lynqtech/main
Control `init -upgrade` behaviour
- Loading branch information
Showing
7 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Control Tofu-Controller behaviour on `terraform init` | ||
...and pin your providers via `.terraform.lock.hcl` | ||
|
||
You may or may not ship `.terraform.lock.hcl` with your stack, which pins the used providers. | ||
|
||
The Tofu-Controller, by default, does a `tofu init -upgrade` when starting a runner pod and updates the used providers | ||
to their latest available version, as specified in your code. | ||
|
||
To disable the automatic upgrade, simply add the flag `upgradeOnInit: false` | ||
```yaml hl_lines="7" | ||
apiVersion: infra.contrib.fluxcd.io/v1alpha2 | ||
kind: Terraform | ||
metadata: | ||
name: helloworld | ||
namespace: flux-system | ||
spec: | ||
# [...] | ||
upgradeOnInit: false | ||
``` | ||
## Inject a `.terraform.lock.hcl` to pin a provider | ||
At certain times you want to pin a provider to a certain version. Simply combine multiple features of the controller here - `FileMapping` and `upgradeOnInit` | ||
|
||
1. example `.terraform.lock.hcl` | ||
```hcl | ||
provider "registry.terraform.io/hashicorp/aws" { | ||
version = "5.70.0" | ||
hashes = [ | ||
"h1:LKnWZnujHcQPm3MAk4elP3H9VXNjlO6rNqlO5s330Yg=", | ||
"zh:09cbec93c324e6f03a866244ecb2bae71fdf1f5d3d981e858b745c90606b6b6d", | ||
"zh:19685d9f4c9ddcfa476a9a428c6c612be4a1b4e8e1198fbcbb76436b735284ee", | ||
"zh:3358ee6a2b24c982b7c83fac0af6898644d1bbdabf9c4e0589e91e427641ba88", | ||
"zh:34f9f2936de7384f8ed887abdbcb54aea1ce7b0cf2e85243a3fd3904d024747f", | ||
"zh:4a99546cc2140304c90d9ccb9db01589d4145863605a0fcd90027a643ea3ec5d", | ||
"zh:4da32fec0e10dab5aa3dea3c9fe57adc973cc73a71f5d59da3f65d85d925dc3f", | ||
"zh:659cf94522bc38ce0af70f7b0371b2941a0e0bcad02d17c1a7b264575fe07224", | ||
"zh:6f1c172c9b98bc86e4f0526872098ee3246c2620f7b323ce0c2ce6427987f7d2", | ||
"zh:79bf8fb8f37c308742e287694a9de081ff8502b065a390d1bcfbd241b4eca203", | ||
"zh:9b12af85486a96aedd8d7984b0ff811a4b42e3d88dad1a3fb4c0b580d04fa425", | ||
"zh:b7a5e1dfd9e179d70a169ddd4db44b56da90309060e27d36b329fe5fb3528e29", | ||
"zh:c2cc728cb18ffd5c4814a10c203452c71f5ab0c46d68f9aa9183183fa60afd87", | ||
"zh:c89bb37d2b8947c9a0d62b0b86ace51542f3327970f4e56a68bf81d9d0b8b65b", | ||
"zh:ef2a61e8112c3b5e70095508aadaadf077e904b62b9cfc22030337f773bba041", | ||
"zh:f714550b858d141ea88579f25247bda2a5ba461337975e77daceaf0bb7a9c358", | ||
] | ||
} | ||
``` | ||
2. Kubernetes secret `terraform-lock-hcl` | ||
```yaml | ||
kind: Secret | ||
apiVersion: v1 | ||
data: | ||
lock: <base64 encoded data of above> | ||
metadata: | ||
name: terraform-lock-hcl | ||
namespace: flux-system | ||
type: Opaque | ||
``` | ||
3. Add a `FileMapping` + disable upgrade on init | ||
```yaml | ||
apiVersion: infra.contrib.fluxcd.io/v1alpha2 | ||
kind: Terraform | ||
metadata: | ||
name: helloworld | ||
namespace: flux-system | ||
spec: | ||
# [...] | ||
upgradeOnInit: false | ||
FileMapping: | ||
- location: workspace | ||
path: .terraform.lock.hcl | ||
secretRef: | ||
key: lock | ||
name: terraform-lock-hcl | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters