From 8b227df5146932530d7c073ec27a019c3d772425 Mon Sep 17 00:00:00 2001 From: Chocolatey Community Date: Fri, 27 Oct 2023 12:14:31 +0000 Subject: [PATCH] AU: 1 updated - etcd [skip ci] https://gist.github.com/choco-bot/a14b1e5bfaf70839b338eb1ab7f8226f/9cdb2473c0bf1883cc2093f1235a74f0493630bd --- automatic/etcd/etcd.json | 2 +- automatic/etcd/etcd.nuspec | 32 +++++++++++++++------------ automatic/etcd/legal/VERIFICATION.txt | 6 ++--- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/automatic/etcd/etcd.json b/automatic/etcd/etcd.json index 8d2191de4f9..fbd2e4b62c4 100644 --- a/automatic/etcd/etcd.json +++ b/automatic/etcd/etcd.json @@ -6,6 +6,6 @@ "3.2": "3.2.32", "3.3": "3.3.27", "3.4": "3.4.27", - "3.5": "3.5.9", + "3.5": "3.5.10", "3.6": "3.6.0-alpha0" } diff --git a/automatic/etcd/etcd.nuspec b/automatic/etcd/etcd.nuspec index 6305bd1100f..7729499ed31 100644 --- a/automatic/etcd/etcd.nuspec +++ b/automatic/etcd/etcd.nuspec @@ -3,7 +3,7 @@ etcd - 3.4.27 + 3.5.10 https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/etcd chocolatey-community,dgalbraith,Andrei Bejenaru,Robert Labrie etcd (Install) @@ -45,14 +45,14 @@ Example: `choco install etcd -y --params="-discovery https://discovery.etcd.io/t * Windows support is limited to 64-bit systems * Originally packaged by Robert Labrie (https://github.com/robertlabrie) ]]> - Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.4.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/upgrades/upgrade_3_4.md) before upgrading etcd (there may be breaking changes). + Please check out [CHANGELOG](https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md) for a full list of changes. And make sure to read [upgrade guide](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/upgrades/upgrade_3_5.md) before upgrading etcd (there may be breaking changes). -For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.4/op-guide/supported-platform.md). +For installation guides, please check out [play.etcd.io](http://play.etcd.io) and [operating etcd](https://github.com/etcd-io/etcd/tree/master/Documentation#operating-etcd-clusters). Latest support status for common architectures and operating systems can be found at [supported platforms](https://github.com/etcd-io/website/blob/main/content/en/docs/v3.5/op-guide/supported-platform.md). ###### Linux ```bash -ETCD_VER=v3.4.27 +ETCD_VER=v3.5.10 # choose either URL GOOGLE_URL=https://storage.googleapis.com/etcd @@ -68,6 +68,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version +/tmp/etcd-download-test/etcdutl version ``` ```bash @@ -82,7 +83,7 @@ rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz ###### macOS (Darwin) ```bash -ETCD_VER=v3.4.27 +ETCD_VER=v3.5.10 # choose either URL GOOGLE_URL=https://storage.googleapis.com/etcd @@ -98,6 +99,7 @@ mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -r /tmp/etcd-download-test/etcd --version /tmp/etcd-download-test/etcdctl version +/tmp/etcd-download-test/etcdutl version ``` ###### Docker @@ -106,13 +108,13 @@ etcd uses [`gcr.io/etcd-development/etcd`](https://gcr.io/etcd-development/etcd) ```bash rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ - docker rmi gcr.io/etcd-development/etcd:v3.4.27 || true && \ + docker rmi gcr.io/etcd-development/etcd:v3.5.10 || true && \ docker run \ -p 2379:2379 \ -p 2380:2380 \ --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \ - --name etcd-gcr-v3.4.27 \ - gcr.io/etcd-development/etcd:v3.4.27 \ + --name etcd-gcr-v3.5.10 \ + gcr.io/etcd-development/etcd:v3.5.10 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ @@ -127,12 +129,14 @@ rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \ --logger zap \ --log-outputs stderr -docker exec etcd-gcr-v3.4.27 /usr/local/bin/etcd --version -docker exec etcd-gcr-v3.4.27 /usr/local/bin/etcdctl version -docker exec etcd-gcr-v3.4.27 /usr/local/bin/etcdctl endpoint health -docker exec etcd-gcr-v3.4.27 /usr/local/bin/etcdctl put foo bar -docker exec etcd-gcr-v3.4.27 /usr/local/bin/etcdctl get foo -``` +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcd --version +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl version +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdutl version +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl endpoint health +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl put foo bar +docker exec etcd-gcr-v3.5.10 /usr/local/bin/etcdctl get foo +``` + diff --git a/automatic/etcd/legal/VERIFICATION.txt b/automatic/etcd/legal/VERIFICATION.txt index 3068e5c3784..c53f5e03ed4 100644 --- a/automatic/etcd/legal/VERIFICATION.txt +++ b/automatic/etcd/legal/VERIFICATION.txt @@ -4,11 +4,11 @@ Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy. The embedded software have been downloaded from the listed download -location on +location on and can be verified by doing the following: 1. Download the following: - software: + software: 2. Get the checksum using one of the following methods: - Using powershell function 'Get-FileHash' @@ -17,6 +17,6 @@ and can be verified by doing the following: 3. The checksums should match the following: checksum type: sha256 - checksum: 708CFF0B9A1BDD6466DD20D6C4BDBD24266E959C4608750A9809E08904A7237D + checksum: B36E54D5861CB8F0EDD692A649E9A5809ABB1F8EF07996C7B5016CA9F09867F5 The file 'LICENSE.txt' has been obtained from