Skip to content

Commit 35084fe

Browse files
authored
Merge pull request #828 from rawmind0/rancher263
Add support to Rancher v2.6.3
2 parents f1e463c + 72853ee commit 35084fe

7 files changed

Lines changed: 173 additions & 193 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1-
## 1.22.0 (Unreleased)
1+
## 1.22.0 (December 22, 2021)
22

33
FEATURES:
44

55
* **New Argument:** `rancher2_cloud_credential.s3_credential_config` - (Optional) S3 config for the Cloud Credential. Just for Rancher 2.6.0 and above (list maxitems:1)
66
* **New Argument:** `rancher2_cluster.rke_config.enable_cri_dockerd` - (Optional) Enable/disable using cri-dockerd. Deafult: `false` (bool) https://github.com/rancher/terraform-provider-rancher2/issues/792
77
* **New Argument:** `rancher2_cluster.rke_config.private_registries.ecr_credential_plugin` - (Optional) ECR credential plugin config (list maxitems:1)
8+
* **New Argument:** `rancher2_cluster_v2.local_auth_endpoint` - - (Optional) Cluster V2 local auth endpoint (list maxitems:1)
9+
* **Deprecated Argument:** `rancher2_cluster_v2.rke_config.local_auth_endpoint` - (Deprecated) Use `rancher2_cluster_v2.local_auth` endpoint instead (list maxitems:1)
810

911
ENHANCEMENTS:
1012

1113
* Updated `rancher2_cluster_v2` docs adding labels and annotations arguments. https://github.com/rancher/terraform-provider-rancher2/issues/784
1214
* Updated `findClusterRegistrationToken` function checking for correct Cluster Registration Token https://github.com/rancher/terraform-provider-rancher2/issues/791
1315
* Updated `getClusterKubeconfig` function to properly delete a cluster if cluster not available https://github.com/rancher/terraform-provider-rancher2/issues/788
1416
* Updated `rancher2_machine_config_v2` resource to allow its use by Rancher standard users https://github.com/rancher/terraform-provider-rancher2/issues/824
17+
* Updated `rancher2_cluster.eks_config_v2` argument to fix EKS launch template issue https://github.com/rancher/terraform-provider-rancher2/issues/820
18+
* Updated go modules and acceptance tests to support rancher v2.6.3
1519

1620
BUG FIXES:
1721

go.mod

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/terraform-providers/terraform-provider-rancher2
1+
module github.com/rancher/terraform-provider-rancher2
22

33
go 1.16
44

@@ -7,7 +7,7 @@ require (
77
github.com/hashicorp/go-version v1.2.0
88
github.com/hashicorp/terraform-plugin-sdk v1.14.0
99
github.com/rancher/norman v0.0.0-20211201154850-abe17976423e
10-
github.com/rancher/rancher v0.0.0-20211201221120-ca431e84dbeb
10+
github.com/rancher/rancher v0.0.0-20211218171736-3c1d5fac3248
1111
github.com/rancher/rancher/pkg/apis v0.0.0
1212
github.com/rancher/rancher/pkg/client v0.0.0
1313
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
@@ -20,36 +20,37 @@ require (
2020

2121
replace (
2222
github.com/crewjam/saml => github.com/crewjam/saml v0.4.1
23-
github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
24-
github.com/docker/docker => github.com/moby/moby v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible
25-
github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20211201221120-ca431e84dbeb
26-
github.com/rancher/rancher/pkg/client => github.com/rancher/rancher/pkg/client v0.0.0-20211201221120-ca431e84dbeb
23+
github.com/docker/distribution => github.com/docker/distribution v2.7.1+incompatible
24+
github.com/docker/docker => github.com/docker/docker v20.10.6+incompatible
25+
github.com/rancher/rancher/pkg/apis => github.com/rancher/rancher/pkg/apis v0.0.0-20211218171736-3c1d5fac3248
26+
github.com/rancher/rancher/pkg/client => github.com/rancher/rancher/pkg/client v0.0.0-20211218171736-3c1d5fac3248
2727
github.com/spf13/afero => github.com/spf13/afero v1.2.2
2828
helm.sh/helm/v3 => github.com/rancher/helm/v3 v3.5.4-rancher.1
29-
k8s.io/api => k8s.io/api v0.21.0
30-
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.0
31-
k8s.io/apimachinery => k8s.io/apimachinery v0.21.0
32-
k8s.io/apiserver => k8s.io/apiserver v0.21.0
33-
k8s.io/cli-runtime => k8s.io/cli-runtime v0.21.0
34-
k8s.io/client-go => github.com/rancher/client-go v0.21.0-rancher.1
35-
k8s.io/cloud-provider => k8s.io/cloud-provider v0.21.0
36-
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.21.0
37-
k8s.io/code-generator => k8s.io/code-generator v0.21.0
38-
k8s.io/component-base => k8s.io/component-base v0.21.0
39-
k8s.io/component-helpers => k8s.io/component-helpers v0.21.0
40-
k8s.io/controller-manager => k8s.io/controller-manager v0.21.0
41-
k8s.io/cri-api => k8s.io/cri-api v0.21.0
42-
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.21.0
43-
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.21.0
44-
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.21.0
45-
k8s.io/kube-proxy => k8s.io/kube-proxy v0.21.0
46-
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.21.0
47-
k8s.io/kubectl => k8s.io/kubectl v0.21.0
48-
k8s.io/kubelet => k8s.io/kubelet v0.21.0
49-
k8s.io/kubernetes => k8s.io/kubernetes v1.21.0
50-
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.21.0
51-
k8s.io/metrics => k8s.io/metrics v0.21.0
52-
k8s.io/mount-utils => k8s.io/mount-utils v0.21.0
53-
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.21.0
29+
k8s.io/api => k8s.io/api v0.22.3
30+
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.22.3
31+
k8s.io/apimachinery => k8s.io/apimachinery v0.22.3
32+
k8s.io/apiserver => k8s.io/apiserver v0.22.3
33+
k8s.io/cli-runtime => k8s.io/cli-runtime v0.22.3
34+
k8s.io/client-go => github.com/rancher/client-go v1.22.3-rancher.1
35+
k8s.io/cloud-provider => k8s.io/cloud-provider v0.22.3
36+
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.22.3
37+
k8s.io/code-generator => k8s.io/code-generator v0.22.3
38+
k8s.io/component-base => k8s.io/component-base v0.22.3
39+
k8s.io/component-helpers => k8s.io/component-helpers v0.22.3
40+
k8s.io/controller-manager => k8s.io/controller-manager v0.22.3
41+
k8s.io/cri-api => k8s.io/cri-api v0.22.3
42+
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.22.3
43+
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.22.3
44+
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.22.3
45+
k8s.io/kube-proxy => k8s.io/kube-proxy v0.22.3
46+
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.22.3
47+
k8s.io/kubectl => k8s.io/kubectl v0.22.3
48+
k8s.io/kubelet => k8s.io/kubelet v0.22.3
49+
k8s.io/kubernetes => k8s.io/kubernetes v1.22.3
50+
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.22.3
51+
k8s.io/metrics => k8s.io/metrics v0.22.3
52+
k8s.io/mount-utils => k8s.io/mount-utils v0.22.3
53+
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.22.0
54+
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.22.3
5455
launchpad.net/gocheck => github.com/go-check/check v0.0.0-20200227125254-8fa46927fb4f
5556
)

0 commit comments

Comments
 (0)