-
Notifications
You must be signed in to change notification settings - Fork 5
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 #9 from rpadovani:change-provider
Change provider to alekc/kubectl
- Loading branch information
Showing
3 changed files
with
32 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# terraform-crds-manager | ||
|
||
## 1.0.0 | ||
|
||
- Replace `gavinbunney/kubectl` with `alekc/terraform-provider-kubectl`; this will cause resources to be recreated (and thus the major version bump), but you can avoid that importing them in the new provider following [the linked guide][0]; | ||
- Require Terraform 0.13 or newer; | ||
|
||
[0]: https://github.com/alekc/terraform-provider-kubectl?tab=readme-ov-file#changing-providers-for-existing-resources | ||
|
||
## 0.3.0 | ||
|
||
With this release, a new variable is available: | ||
- `apply_only`: if true, no CRD will be ever deleted by the module. Default to `false`; | ||
|
||
Updating the module doesn't change the current behavior. | ||
|
||
## 0.2.0 | ||
|
||
Thanks to @joelsdc for their first contribution! | ||
|
||
With this release, two new variables are available: | ||
— `force_new`: Forces delete & create of resources if the `yaml_body` changes; | ||
— `force_conflicts`: Allows using `force_conflicts`; | ||
|
||
Both of them are optional, and default to false, so updating the module doesn't change the behavior. |
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
terraform { | ||
required_version = ">= 0.13" | ||
|
||
required_providers { | ||
kubectl = { | ||
source = "gavinbunney/kubectl" | ||
source = "alekc/kubectl" | ||
version = "~> 2.0" | ||
} | ||
} | ||
} |