Skip to content

Commit 5b4da12

Browse files
authored
Merge pull request #33 from invidian/release-v0.8.0
Release v0.8.0
2 parents 6e82026 + 4c04dd6 commit 5b4da12

File tree

5 files changed

+490
-196
lines changed

5 files changed

+490
-196
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.0] - 2022-09-13
9+
### Changed
10+
- Updated `libflexkube` version to `v0.9.0`.
11+
- Updated remaining dependencies to latest versions.
12+
813
## [0.7.0] - 2022-05-09
914
### Changed
1015
- Updated `libflexkube` version to `v0.8.0`.
@@ -60,6 +65,7 @@ in `libflexkube` and `flexkube_pki` and `flexkube_etcd_cluster` resources compla
6065
### Changed
6166
- flexkube_containers: rename 'container' to 'host_configured_container'.
6267

68+
[0.8.0]: https://github.com/flexkube/terraform-provider-flexkube/compare/v0.7.0...v0.8.0
6369
[0.7.0]: https://github.com/flexkube/terraform-provider-flexkube/compare/v0.6.0...v0.7.0
6470
[0.6.0]: https://github.com/flexkube/terraform-provider-flexkube/compare/v0.5.1...v0.6.0
6571
[0.5.1]: https://github.com/flexkube/terraform-provider-flexkube/compare/v0.5.0...v0.5.1

docs/resources/helm_release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ EOF
3737

3838
* `version` - (Optional) Version of the chart to install. Defaults to `>0.0.0-0`, which will install latest version of the chart.
3939

40-
* `create_namespace` - (Optional) If `true`, namespace for the release will be automatically craeted. Defaults to `false`.
40+
* `create_namespace` - (Optional) If `true`, namespace for the release will be automatically created. Defaults to `false`.
4141

4242
## Attribute Reference
4343

e2e/variables.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,35 +55,35 @@ variable "metrics_server_helm_chart_source" {
5555
}
5656

5757
variable "kube_apiserver_helm_chart_version" {
58-
default = "0.4.0"
58+
default = "0.5.0"
5959
}
6060

6161
variable "kubernetes_helm_chart_version" {
62-
default = "0.5.0"
62+
default = "0.6.0"
6363
}
6464

6565
variable "kube_proxy_helm_chart_version" {
66-
default = "0.4.0"
66+
default = "0.5.0"
6767
}
6868

6969
variable "tls_bootstrapping_helm_chart_version" {
7070
default = "0.1.1"
7171
}
7272

7373
variable "coredns_helm_chart_version" {
74-
default = "2.0.4"
74+
default = "2.0.6"
7575
}
7676

7777
variable "metrics_server_helm_chart_version" {
78-
default = "3.0.6"
78+
default = "3.0.9"
7979
}
8080

8181
variable "kubelet_rubber_stamp_helm_chart_version" {
82-
default = "0.1.7"
82+
default = "0.1.8"
8383
}
8484

8585
variable "calico_helm_chart_version" {
86-
default = "0.4.16"
86+
default = "0.4.22"
8787
}
8888

8989
variable "flatcar_channel" {

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/flexkube/terraform-provider-flexkube
33
go 1.16
44

55
require (
6-
github.com/flexkube/libflexkube v0.8.0
7-
github.com/google/go-cmp v0.5.8
8-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.16.0
6+
github.com/flexkube/libflexkube v0.9.0
7+
github.com/google/go-cmp v0.5.9
8+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.22.0
99
sigs.k8s.io/yaml v1.3.0
1010
)

0 commit comments

Comments
 (0)