v0.55.8

Try our Chrome extension

Chrome store icon Chrome Webstore

Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!

Changedetection.io needs your support!

You can help us by supporting changedetection.io on these platforms;

The more popular changedetection.io is, the more time we can dedicate to adding amazing features!

Many thanks :)

changedetection.io team

Non ancora secondi fa
            False
        
Non ancora secondi fa
Current erroring screenshot from most recent request

Testo trigger Testo ignorato Testo bloccato

10 ore fa
    Skip to content

      Navigation Menu

            Sign in Appearance settings
                * Platform
                        + AI CODE CREATION
                            o GitHub Copilot Write better code with AI
                            o GitHub Copilot app Direct agents from issue to merge
                            o MCP Registry Integrate external tools
                        + DEVELOPER WORKFLOWS
                            o Actions Automate any workflow
                            o Codespaces Instant dev environments
                            o Issues Plan and track work
                            o Code Review Manage code changes
                            o Code Quality Enforce quality at merge
                        + APPLICATION SECURITY
                            o GitHub Advanced Security Find and fix vulnerabilities
                            o Code security Secure your code as you build
                            o Secret protection Stop leaks before they start
                        + EXPLORE
                            o Why GitHub
                            o Documentation
                            o Blog
                            o Changelog
                            o Marketplace
                      View all features
                * Solutions
                        + BY COMPANY SIZE
                            o Enterprises
                            o Small and medium teams
                            o Startups
                            o Nonprofits
                        + BY USE CASE
                            o App Modernization
                            o DevSecOps
                            o DevOps
                            o CI/CD
                            o View all use cases
                        + BY INDUSTRY
                            o Healthcare
                            o Financial services
                            o Manufacturing
                            o Government
                            o View all industries
                      View all solutions
                * Resources
                        + EXPLORE BY TOPIC
                            o AI
                            o Software Development
                            o DevOps
                            o Security
                            o View all topics
                        + EXPLORE BY TYPE
                            o Customer stories
                            o Events & webinars
                            o Ebooks & reports
                            o Business insights
                            o GitHub Skills
                        + SUPPORT & SERVICES
                            o Documentation
                            o Customer support
                            o Community forum
                            o Trust center
                            o Partners
                      View all resources
                * Open Source
                        + COMMUNITY
                            o GitHub Sponsors Fund open source developers
                        + PROGRAMS
                            o Security Lab
                            o Maintainer Community
                            o Accelerator
                            o GitHub Stars
                            o Archive Program
                        + REPOSITORIES
                            o Topics
                            o Trending
                            o Collections
                * Enterprise
                        + ENTERPRISE SOLUTIONS
                            o Enterprise platform AI-powered developer platform
                        + AVAILABLE ADD-ONS
                            o GitHub Advanced Security Enterprise-grade security features
                            o Copilot for Business Enterprise-grade AI features
                            o Premium Support Enterprise-grade 24/7 support
              * Pricing
                Type / to search
                Sign in
              Sign up Appearance settings
      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              Uh oh!

              There was an error while loading. Please reload this page.

              etcd-io / etcd Public
              * Notifications You must be signed in to change notification settings
              * Fork 10.5k
                * Star 52.1k
          * Code
          * Issues 110
          * Pull requests 184
          * Discussions
          * Actions
          * Security and quality 20
          * Insights
          Additional navigation options
                  * Code
                  * Issues
                  * Pull requests
                  * Discussions
                  * Actions
                  * Security and quality
                  * Insights

        Releases: etcd-io/etcd

              Releases Tags
            Releases · etcd-io/etcd

                Release list

                    * v3.7.1
                    * v3.6.14
                    * v3.5.33
                    * v3.7.0
                    * v3.6.13
                    * v3.5.32
                    * v3.7.0-rc.0
                    * v3.6.12
                    * v3.5.31
                    * v3.4.45
                    Previous Next
                Jump to release
                        * v3.7.1
                        * v3.6.14
                        * v3.5.33
                        * v3.7.0
                        * v3.6.13
                        * v3.5.32
                        * v3.7.0-rc.0
                        * v3.6.12
                        * v3.5.31
                        * v3.4.45
                    Previous Next

                v3.7.1

                              v3.7.1 Latest
                              Latest
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 23 Jul 19:37
                              v3.7.1
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              5e7fd0d
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.7.1
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.7.1
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.7.1
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                              ❤️ 1 jonigl reacted with heart emoji 🚀 1 jonigl reacted with rocket emoji
                                All reactions
                                  * ❤️ 1 reaction
                                  * 🚀 1 reaction
                              1 person reacted

                v3.6.14

                              v3.6.14
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 23 Jul 19:29
                              v3.6.14
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              fc04cf7
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.6.14
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.6.14
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.6.14
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                                All reactions

                v3.5.33

                              v3.5.33
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 23 Jul 19:12
                              v3.5.33
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              9f4b125
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.5.33
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.5.33
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.5.33
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                                All reactions

                v3.7.0

                              v3.7.0
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 08 Jul 18:26
                              v3.7.0
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              4d71f7c
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.7.0
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.7.0
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.7.0
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                              👍 3 m-ueberall, tkren, and mehdiMj-ir reacted with thumbs up emoji
                                All reactions
                                  * 👍 3 reactions
                              3 people reacted

                v3.6.13

                              v3.6.13
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jul 20:43
                              v3.6.13
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              b0f9ef1
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.6.13
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.6.13
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.6.13
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                              👍 1 bugcysg reacted with thumbs up emoji
                                All reactions
                                  * 👍 1 reaction
                              1 person reacted

                v3.5.32

                              v3.5.32
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jul 20:32
                              v3.5.32
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              32c8992
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.5.32
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.5.32
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.5.32
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                                All reactions

                v3.7.0-rc.0

                              v3.7.0-rc.0 Pre-release
                              Pre-release
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jun 21:27
                              v3.7.0-rc.0
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              8535953
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read our upgrade guides before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.7.0-rc.0
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.7.0-rc.0
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.7.0-rc.0
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                              🎉 1 bugcysg reacted with hooray emoji ❤️ 2 peterhirn and controlrepo reacted with heart emoji
                                All reactions
                                  * 🎉 1 reaction
                                  * ❤️ 2 reactions
                              3 people reacted

                v3.6.12

                              v3.6.12
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jun 20:59
                              v3.6.12
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              90b034a
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.6.12
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.6.12
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.6.12
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                              ❤️ 2 controlrepo and Xxd19941006 reacted with heart emoji
                                All reactions
                                  * ❤️ 2 reactions
                              2 people reacted

                v3.5.31

                              v3.5.31
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jun 20:46
                              v3.5.31
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              5ddacc1
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.5.31
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.5.31
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.5.31
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 10
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                                All reactions

                v3.4.45

                              v3.4.45
                            Compare

                                  Choose a tag to compare

                                      Sorry, something went wrong.

                                Filter
                                  Loading

                                        Sorry, something went wrong.

                                          Uh oh!

                                          There was an error while loading. Please reload this page.

                                  No results found

                                View all tags
                              ivanvc released this 01 Jun 20:35
                              v3.4.45
                                      This tag was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.
                              6e72c68
                                      This commit was signed with the committer’s verified signature.
                                    ivanvc Iván Valdés Castillo
                                    GPG key ID: 4037D37741ED0CC5
                                      Verified
                                    Learn about vigilant mode.

                          Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

                          For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

                          Linux

                            ETCD_VER=v3.4.45
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
                            tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
                            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
                            
                             # start a local etcd server
                            /tmp/etcd-download-test/etcd
                            
                             # write,read to etcd
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
                            /tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

                          macOS (Darwin)

                            ETCD_VER=v3.4.45
                            
                             # choose either URL
                            GOOGLE_URL=https://storage.googleapis.com/etcd
                            GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
                            DOWNLOAD_URL=${GOOGLE_URL}
                            
                            rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
                            
                            curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
                            mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
                            
                            /tmp/etcd-download-test/etcd --version
                            /tmp/etcd-download-test/etcdctl version
                            /tmp/etcd-download-test/etcdutl version

                          Docker

                          etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

                            ETCD_VER=v3.4.45
                            
                            rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
                              docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
                              docker run \
                              -p 2379:2379 \
                              -p 2380:2380 \
                              --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
                              --name etcd-gcr-${ETCD_VER} \
                              gcr.io/etcd-development/etcd:${ETCD_VER} \
                              /usr/local/bin/etcd \
                              --name s1 \
                              --data-dir /etcd-data \
                              --listen-client-urls http://0.0.0.0:2379 \
                              --advertise-client-urls http://0.0.0.0:2379 \
                              --listen-peer-urls http://0.0.0.0:2380 \
                              --initial-advertise-peer-urls http://0.0.0.0:2380 \
                              --initial-cluster s1=http://0.0.0.0:2380 \
                              --initial-cluster-token tkn \
                              --initial-cluster-state new \
                              --log-level info \
                              --logger zap \
                              --log-outputs stderr
                            
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
                            docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
                          Assets 8
                            Loading

                                    Uh oh!

                                    There was an error while loading. Please reload this page.

                                All reactions
                Previous 1 2 3 4 5 … 29 30 Next
                Previous Next

  Footer

      © 2026 GitHub, Inc.

    Footer navigation

      * Terms
      * Privacy
      * Security
      * Status
      * Community
      * Docs
      * Contact
      * Manage cookies
      * Do not share my personal information
    You can’t perform that action at this time.
For now, Differences are performed on text, not graphically, only the latest screenshot is available.

Screenshot requires a Content Fetcher ( Sockpuppetbrowser, selenium, etc ) that supports screenshots.