guides: remove references to specific versions (#4999)
This changes with time so will opt to not hardcoding this. Investigated using the middleman helper to render out the current configured version but that won't exist on learn.hashicorp.com so I think this is the most future-proof way.
This commit is contained in:
parent
77ad621c04
commit
7240d1b27a
|
@ -6,7 +6,6 @@ description: |-
|
||||||
This deployment guide covers the steps required to install and
|
This deployment guide covers the steps required to install and
|
||||||
configure a single HashiCorp Consul cluster as defined in the
|
configure a single HashiCorp Consul cluster as defined in the
|
||||||
Consul Reference Architecture
|
Consul Reference Architecture
|
||||||
product_version: 1.2
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Consul Deployment Guide
|
# Consul Deployment Guide
|
||||||
|
@ -40,7 +39,7 @@ Precompiled Consul binaries are available for download at [https://releases.hash
|
||||||
You should perform checksum verification of the zip packages using the SHA256SUMS and SHA256SUMS.sig files available for the specific release version. HashiCorp provides [a guide on checksum verification](https://www.hashicorp.com/security.html) for precompiled binaries.
|
You should perform checksum verification of the zip packages using the SHA256SUMS and SHA256SUMS.sig files available for the specific release version. HashiCorp provides [a guide on checksum verification](https://www.hashicorp.com/security.html) for precompiled binaries.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
CONSUL_VERSION="1.2.0"
|
CONSUL_VERSION="x.x.x"
|
||||||
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip
|
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip
|
||||||
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_SHA256SUMS
|
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_SHA256SUMS
|
||||||
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_SHA256SUMS.sig
|
curl --silent --remote-name https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_SHA256SUMS.sig
|
||||||
|
|
Loading…
Reference in a new issue