diff --git a/azure-without-instance-replacement/README.md b/azure-without-instance-replacement/README.md index 04011c9..863a1a9 100644 --- a/azure-without-instance-replacement/README.md +++ b/azure-without-instance-replacement/README.md @@ -16,7 +16,7 @@ flatcar_alpha_version = "x.y.z" You can resolve the latest Flatcar Alpha version with this shell command: ``` -curl -sSfL https://alpha.release.flatcar-linux.net/amd64-usr/current/version.txt | grep -m 1 FLATCAR_VERSION_ID= | cut -d = -f 2 +(source <(curl -sSfL https://alpha.release.flatcar-linux.net/amd64-usr/current/version.txt); echo "${FLATCAR_VERSION_ID}") ``` The machine name listed in the `machines` variable is used to retrieve the corresponding [Container Linux Config](https://kinvolk.io/docs/flatcar-container-linux/latest/container-linux-config-transpiler/configuration/). For each machine in the list, you should have a `machine-NAME.yaml.tmpl` file with a corresponding name. An example file `machine-mynode.yaml.tmpl` for `mynode` is already provided. diff --git a/azure/README.md b/azure/README.md index 883ff77..c695a44 100644 --- a/azure/README.md +++ b/azure/README.md @@ -14,7 +14,7 @@ flatcar_stable_version = "x.y.z" You can resolve the latest Flatcar Stable version with this shell command: ``` -curl -sSfL https://stable.release.flatcar-linux.net/amd64-usr/current/version.txt | grep -m 1 FLATCAR_VERSION_ID= | cut -d = -f 2 +(source <(curl -sSfL https://stable.release.flatcar-linux.net/amd64-usr/current/version.txt); echo "${FLATCAR_VERSION_ID}") ``` The machine name listed in the `machines` variable is used to retrieve the corresponding [Container Linux Config](https://www.flatcar.org/docs/latest/provisioning/cl-config/). For each machine in the list, you should have a `machine-NAME.yaml.tmpl` file with a corresponding name. An example file `machine-mynode.yaml.tmpl` for `mynode` is already provided. The SSH key used there is not really necessary since we already set it as VM attribute. diff --git a/digitalocean/README.md b/digitalocean/README.md index b3f90db..9aaf208 100644 --- a/digitalocean/README.md +++ b/digitalocean/README.md @@ -15,7 +15,7 @@ flatcar_stable_version = "x.y.z" You can resolve the latest Flatcar Stable version with this shell command: ``` -curl -sSfL https://stable.release.flatcar-linux.net/amd64-usr/current/version.txt | grep -m 1 FLATCAR_VERSION_ID= | cut -d = -f 2 +(source <(curl -sSfL https://stable.release.flatcar-linux.net/amd64-usr/current/version.txt); echo "${FLATCAR_VERSION_ID}") ``` The machine name listed in the `machines` variable is used to retrieve the corresponding [Container Linux Config](https://kinvolk.io/docs/flatcar-container-linux/latest/container-linux-config-transpiler/configuration/). For each machine in the list, you should have a `machine-NAME.yaml.tmpl` file with a corresponding name. An example file `machine-mynode.yaml.tmpl` for `mynode` is already provided.