Releases: sl1pm4t/terraform-provider-kubernetes
Releases · sl1pm4t/terraform-provider-kubernetes
v1.3.0-custom
Change Log
v1.3.0-custom (2018-11-23)
Fixed bugs:
- TF kubernetes provider tries to in-place update not modifiable attribute #74
Closed issues:
- Importing a config_map volume with no mode causes panic #81
- Importing a resource with envFrom: configMapRef crashes #76
- some annotations are being re-applied on every terraform run #72
Merged pull requests:
- EmptyDir ‘size_limit’ causing quantity parse error #88 (sl1pm4t)
- Fix TF re-adding annotations on every apply #87 (sl1pm4t)
- Fix: StatefulSet pod_management_policy #86 (sl1pm4t)
- Add/Fix attributes to/on service resource #85 (sl1pm4t)
- Added ServiceExternalTrafficPolicy #84 (sebastianroesch)
- Fixing panic when importing resource with config_map volume #82 (itmecho)
- Add kubernetes_secret datasoucre #80 (Phylu)
- Add missing empty_dir size_limit #79 (itmecho)
- Fixing panic when loading pods with env_from config_map_ref #77 (itmecho)
- Adds Deployment Data Source #75 (itmecho)
- fix affinity.pod_(anti)_affinity namespaces missing in flattener #71 (kolach)
* This Change Log was automatically generated by github_changelog_generator
v1.2.2-custom
Changes
Fixes
- Fix panic caused by DNSConfig attribute [#66]
- Fix “expected pointer, but got nil” error when Deployment strategy = Recreate [#69]
Schema / Resource changes
- Add
dns_config
attribute to Pod Spec [#64] - Add support for Pod Affinity / Anti affinity [#68] (thanks @kolach)
- Don't ForceNew for selector label changes. [#58] (thanks @anuraaga)
Other
v1.2.1-custom
v1.2.0-custom
v1.1.2-custom
v1.1.1-custom
v1.1.0-custom
CHANGES
-
Updates client-go to v6.0.0 and kubernetes libraries to v1.9.0. [#11]
The following resources are now able to use the stable V1 API:kubernetes_daemonset
kubernetes_deployment
kubernetes_stateful_set
If the Kubernetes Server is pre-1.9.x then the provider will fallback to using beta APIs to manage the above resources.
New Resources
kubernetes_cron_job
[#12]
v1.0.8-custom
Fixes
- Fixed an issue that could leave orphaned replica sets when a deployment is deleted
- Fixed acceptance tests for various resources
- Added acceptance tests for
DaemonSet
,Job
- Fixed an
unconvertible type
error - Fixed a perpetual diff issue when no top-level labels are defined on
Deployment
,StatefulSet
,DaemonSet
. The Kubernetes backend would copy labels from inner metadata blocks (e.g. spec->template->metadata) to the top level, which would cause a TF diff.
Changes
- Added
paused
,progress_deadline_seconds
attributes toDeployment
schema
v1.0.7-custom
BREAKING
DaemonSet
+ StatefulSet
resource schemas have been changed to better align with the Kubernetes API.
This is similar to what was previously done for the Deployment
resource.
v1.0.6-custom
Add support for init_container
blocks within pod spec.