Document and recommend terraform-provider-matchbox v0.2.3
* https://github.com/coreos/terraform-provider-matchbox/releases/tag/v0.2.3
This commit is contained in:
parent
170ef74eea
commit
d988822741
|
@ -7,6 +7,10 @@ Notable changes between versions.
|
||||||
* Update etcd from v3.3.11 to [v3.3.12](https://github.com/etcd-io/etcd/releases/tag/v3.3.12)
|
* Update etcd from v3.3.11 to [v3.3.12](https://github.com/etcd-io/etcd/releases/tag/v3.3.12)
|
||||||
* Update Calico from v3.5.0 to v3.5.1
|
* Update Calico from v3.5.0 to v3.5.1
|
||||||
|
|
||||||
|
#### Bare-Metal
|
||||||
|
|
||||||
|
* Recommend updating [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin from v0.2.2 to [v0.2.3](https://github.com/coreos/terraform-provider-matchbox/releases/tag/v0.2.3) ([#402](https://github.com/poseidon/typhoon/pull/402))
|
||||||
|
|
||||||
#### Addons
|
#### Addons
|
||||||
|
|
||||||
* Raise nginx-ingress liveness/readiness timeout to 5 seconds
|
* Raise nginx-ingress liveness/readiness timeout to 5 seconds
|
||||||
|
|
|
@ -174,20 +174,12 @@ $ terraform version
|
||||||
Terraform v0.11.7
|
Terraform v0.11.7
|
||||||
```
|
```
|
||||||
|
|
||||||
Add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system.
|
Add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.2/terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.3/terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
tar xzf terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
tar xzf terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
sudo mv terraform-provider-matchbox-v0.2.2-linux-amd64/terraform-provider-matchbox /usr/local/bin/
|
mv terraform-provider-matchbox-v0.2.3-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.3
|
||||||
```
|
|
||||||
|
|
||||||
Add the plugin to your `~/.terraformrc`.
|
|
||||||
|
|
||||||
```
|
|
||||||
providers {
|
|
||||||
matchbox = "/usr/local/bin/terraform-provider-matchbox"
|
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Read [concepts](/architecture/concepts/) to learn about Terraform, modules, and organizing resources. Change to your infrastructure repository (e.g. `infra`).
|
Read [concepts](/architecture/concepts/) to learn about Terraform, modules, and organizing resources. Change to your infrastructure repository (e.g. `infra`).
|
||||||
|
@ -202,6 +194,7 @@ Configure the Matchbox provider to use your Matchbox API endpoint and client cer
|
||||||
|
|
||||||
```tf
|
```tf
|
||||||
provider "matchbox" {
|
provider "matchbox" {
|
||||||
|
version = "0.2.3"
|
||||||
endpoint = "matchbox.example.com:8081"
|
endpoint = "matchbox.example.com:8081"
|
||||||
client_cert = "${file("~/.config/matchbox/client.crt")}"
|
client_cert = "${file("~/.config/matchbox/client.crt")}"
|
||||||
client_key = "${file("~/.config/matchbox/client.key")}"
|
client_key = "${file("~/.config/matchbox/client.key")}"
|
||||||
|
|
|
@ -116,9 +116,9 @@ Terraform v0.11.7
|
||||||
Add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.
|
Add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.2/terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.3/terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
tar xzf terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
tar xzf terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
mv terraform-provider-matchbox-v0.2.2-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.2
|
mv terraform-provider-matchbox-v0.2.3-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.3
|
||||||
```
|
```
|
||||||
|
|
||||||
Add the [terraform-provider-ct](https://github.com/coreos/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.
|
Add the [terraform-provider-ct](https://github.com/coreos/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.
|
||||||
|
@ -141,7 +141,7 @@ Configure the Matchbox provider to use your Matchbox API endpoint and client cer
|
||||||
|
|
||||||
```tf
|
```tf
|
||||||
provider "matchbox" {
|
provider "matchbox" {
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
endpoint = "matchbox.example.com:8081"
|
endpoint = "matchbox.example.com:8081"
|
||||||
client_cert = "${file("~/.config/matchbox/client.crt")}"
|
client_cert = "${file("~/.config/matchbox/client.crt")}"
|
||||||
client_key = "${file("~/.config/matchbox/client.key")}"
|
client_key = "${file("~/.config/matchbox/client.key")}"
|
||||||
|
|
|
@ -156,9 +156,9 @@ mv terraform-provider-ct-v0.2.1-linux-amd64/terraform-provider-ct ~/.terraform.d
|
||||||
If you use bare-metal, add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the versioned name.
|
If you use bare-metal, add the [terraform-provider-matchbox](https://github.com/coreos/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the versioned name.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.2/terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
wget https://github.com/coreos/terraform-provider-matchbox/releases/download/v0.2.3/terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
tar xzf terraform-provider-matchbox-v0.2.2-linux-amd64.tar.gz
|
tar xzf terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz
|
||||||
mv terraform-provider-matchbox-v0.2.2-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.2
|
mv terraform-provider-matchbox-v0.2.3-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.3
|
||||||
```
|
```
|
||||||
|
|
||||||
Binary names are versioned. This enables the ability to upgrade different plugins and have clusters pin different versions.
|
Binary names are versioned. This enables the ability to upgrade different plugins and have clusters pin different versions.
|
||||||
|
@ -168,7 +168,7 @@ $ tree ~/.terraform.d/
|
||||||
/home/user/.terraform.d/
|
/home/user/.terraform.d/
|
||||||
└── plugins
|
└── plugins
|
||||||
├── terraform-provider-ct_v0.2.1
|
├── terraform-provider-ct_v0.2.1
|
||||||
└── terraform-provider-matchbox_v0.2.2
|
└── terraform-provider-matchbox_v0.2.3
|
||||||
```
|
```
|
||||||
|
|
||||||
In each Terraform working directory, set the version of each provider.
|
In each Terraform working directory, set the version of each provider.
|
||||||
|
@ -177,7 +177,7 @@ In each Terraform working directory, set the version of each provider.
|
||||||
# providers.tf
|
# providers.tf
|
||||||
|
|
||||||
provider "matchbox" {
|
provider "matchbox" {
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ $ tree ~/.terraform.d/
|
||||||
└── plugins
|
└── plugins
|
||||||
├── terraform-provider-ct_v0.2.1
|
├── terraform-provider-ct_v0.2.1
|
||||||
├── terraform-provider-ct_v0.3.0
|
├── terraform-provider-ct_v0.3.0
|
||||||
└── terraform-provider-matchbox_v0.2.2
|
└── terraform-provider-matchbox_v0.2.3
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue