Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[openshift-4.3]: bump etcd to v3.3.17 #20

Merged
merged 125 commits into from
Oct 24, 2019
Merged

Commits on Oct 10, 2018

  1. version: 3.3.10+git

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Oct 10, 2018
    Configuration menu
    Copy the full SHA
    6f250f9 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2018

  1. travis: use Go 1.10.7

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Dec 18, 2018
    Configuration menu
    Copy the full SHA
    3a7b8b3 View commit details
    Browse the repository at this point in the history
  2. grpcproxy: fix memory leak

    use set instead of slice as interval value
    
    fixes etcd-io#10326
    Igor German authored and gyuho committed Dec 18, 2018
    Configuration menu
    Copy the full SHA
    59cc0f9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#10335 from gyuho/release-3.3-patch

    [Cherry pick 3.3] grpcproxy: fix memory leak
    gyuho authored Dec 18, 2018
    Configuration menu
    Copy the full SHA
    e6b2f00 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2019

  1. auth: disable CommonName auth for gRPC-gateway

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jan 8, 2019
    Configuration menu
    Copy the full SHA
    c7f744d View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2019

  1. auth: fix cherry-pick

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Jan 9, 2019
    Configuration menu
    Copy the full SHA
    1590373 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2019

  1. version: 3.3.11

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Jan 11, 2019
    Configuration menu
    Copy the full SHA
    2cf9e51 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2019

  1. version: 3.3.11+git

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    410a879 View commit details
    Browse the repository at this point in the history
  2. etcdctl: fix strings.HasPrefix args order

    Signed-off-by: Iskander Sharipov <quasilyte@gmail.com>
    quasilyte authored and gyuho committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    e634184 View commit details
    Browse the repository at this point in the history
  3. version: 3.3.12

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    d57e8b8 View commit details
    Browse the repository at this point in the history
  4. travis.yml: update Go 1.10.8

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    c696442 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. Configuration menu
    Copy the full SHA
    ec22eb9 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. etcdserver: Use panic instead of fatal on no space left error

    When using the embed package to embed etcd, sometimes the storage prefix
    being used might be full. In this case, this code path triggers, causing
    an: `etcdserver: create wal error: no space left on device` error, which
    causes a fatal. A fatal differs from a panic in that it also calls
    os.Exit(1). In this situation, the calling program that embeds the etcd
    server will be abruptly killed, which prevents it from cleaning up
    safely, and giving a proper error message. Depending on what the calling
    program is, this can cause corruption and data loss.
    
    This patch switches the fatal to a panic. Ideally this would be a
    regular error which would get propagated upwards to the StartEtcd
    command, but in the meantime at least this can be caught with recover().
    
    This fixes the most common fatal that I've experienced, but there are
    surely more that need looking into. If possible, the errors should be
    threaded down into the code path so that embedding etcd can be more
    robust.
    
    Fixes: etcd-io#10588
    
    This is a cherry-picked version of upstream: 368f70a
    purpleidea committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    7814718 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#10597 from purpleidea/3.3/fatal-corruption

    etcdserver: Use panic instead of fatal on no space left error
    gyuho authored Mar 29, 2019
    Configuration menu
    Copy the full SHA
    ad5e169 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2019

  1. travis: fix tests by using proper code path

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    332e995 View commit details
    Browse the repository at this point in the history
  2. *: Change gRPC proxy to expose etcd server endpoint /metrics

    This PR resolves an issue where the `/metrics` endpoints exposed by the proxy were not returning metrics of the etcd members servers but of the proxy itself.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    43386ac View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2019

  1. wal: add Verify function to perform corruption check on wal contents

    Signed-off-by: Shreyas Rao <shreyas.sriganesh.rao@sap.com>
    shreyas-s-rao authored and hexfusion committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    cf4836f View commit details
    Browse the repository at this point in the history
  2. wal: Add test for Verify

    Signed-off-by: Shreyas Rao <shreyas.sriganesh.rao@sap.com>
    shreyas-s-rao authored and hexfusion committed Apr 12, 2019
    Configuration menu
    Copy the full SHA
    e206a8b View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2019

  1. Configuration menu
    Copy the full SHA
    38bf1bd View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2019

  1. Merge pull request etcd-io#10656 from jpbetz/automated-cherry-pick-of…

    …-#10646-release-3.3
    
    Automated cherry pick of etcd-io#10646
    jpbetz authored Apr 18, 2019
    Configuration menu
    Copy the full SHA
    5f4a455 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2019

  1. client: Replace ugorji/codec with json-iterator/go

    We need to use the stdlib-compatible one that is case-sensitive, etc
    
    Change-Id: Id0df573a70e09967ac7d8c0a63d99d6a49ce82f1
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    69e0daf View commit details
    Browse the repository at this point in the history
  2. scripts: Remove generated code and script

    Change-Id: Iac4601443bcad71920fd96b97bfe21c16116577a
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    20bd0c0 View commit details
    Browse the repository at this point in the history
  3. vendor: Add json-iterator and its dependencies

    Change-Id: I1f3fc00f95efadd6da9b4c248156f8460ae0ff97
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    02ccf20 View commit details
    Browse the repository at this point in the history
  4. *: update bill-of-materials

    Change-Id: Ibfa24e28cacd58388f7606a945c8ac35e1c34580
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    7ff7e0a View commit details
    Browse the repository at this point in the history
  5. client: Switch to case sensitive unmarshalling to be compatible with …

    …ugorji
    
    Using lessons learned from k8s changes:
    kubernetes/kubernetes#65034
    
    Change-Id: Ia17a8f94ae6ed00c5af2595c2b48d3c9a0344427
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    6e91e35 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6499c14 View commit details
    Browse the repository at this point in the history
  7. vendor: add missing files

    Change-Id: I53b30e9317de6cd058833d743bc88c46686cea20
    dims authored and hexfusion committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    ad7c2cd View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2019

  1. Documentation metadata for 3.3 branch (etcd-io#10692)

    * Update Documentation folder
    
    Signed-off-by: lucperkins <lucperkins@gmail.com>
    
    * Re-add README file
    
    Signed-off-by: lucperkins <lucperkins@gmail.com>
    lucperkins authored Apr 30, 2019
    Configuration menu
    Copy the full SHA
    c46aa44 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2019

  1. etcdserver: improve heartbeat send failures logging

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed May 2, 2019
    Configuration menu
    Copy the full SHA
    f179d4d View commit details
    Browse the repository at this point in the history
  2. clientv3: fix race condition in "Endpoints" methods

    From etcd-io#10595.
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed May 2, 2019
    Configuration menu
    Copy the full SHA
    b7001c0 View commit details
    Browse the repository at this point in the history
  3. version: bump up 3.3.13

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed May 2, 2019
    Configuration menu
    Copy the full SHA
    98d3084 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2019

  1. Configuration menu
    Copy the full SHA
    8ed3e70 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#10718 from rohitsardesai83/release-3.3

     etcd: Replace ghodss/yaml with sigs.k8s.io/yaml in 3.3
    gyuho authored May 29, 2019
    Configuration menu
    Copy the full SHA
    b0babe5 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2019

  1. ctlv3: support "write-out" for "endpoint health" command

    Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
    gyuho authored and jingyih committed Jun 4, 2019
    Configuration menu
    Copy the full SHA
    f835a85 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#10782 from jingyih/cherrypick_9540_to_rele…

    …ase3p3
    
    ctlv3: cherry pick of etcd-io#9540 to release 3.3
    gyuho authored Jun 4, 2019
    Configuration menu
    Copy the full SHA
    8942970 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2019

  1. ctlv3: add missing newline in EndpointHealth

    To make the output consistent with the output before etcd-io#9540.
    jingyih committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d005486 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#10793 from jingyih/automated-cherry-pick-o…

    …f-#10788-origin-release-3.3
    
    Automated cherry pick of etcd-io#10788 on release-3.3
    gyuho authored Jun 5, 2019
    Configuration menu
    Copy the full SHA
    5832014 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2019

  1. Raft HTTP: fix pause/resume race condition

    (cherry picked from commit b1812a4)
    yznima committed Jun 17, 2019
    Configuration menu
    Copy the full SHA
    9f1d6ca View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2019

  1. Merge pull request etcd-io#10827 from yznima/pr-race-3.3

    Raft HTTP: fix pause/resume race condition
    gyuho authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    d12f132 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#10570 from sbenderli/cherry-pick-of-#8334

    raft: cherry pick of etcd-io#8334 to release-3.3
    gyuho authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    789ff21 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2019

  1. etcdserver/api: add "etcd_network_snapshot_send_inflights_total", "et…

    …cd_network_snapshot_receive_inflights_total"
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    1c8fab7 View commit details
    Browse the repository at this point in the history
  2. etcdserver: add "etcd_server_snapshot_apply_inflights_total"

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    4527f4c View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. travis: update

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    3aef9a1 View commit details
    Browse the repository at this point in the history
  2. pkg: clean up code format

    Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    0b37ae0 View commit details
    Browse the repository at this point in the history
  3. pkg/adt: add "visitLevel", make "IntervalTree" interface, more tests

    Make "IntervalTree" an interface to abstract range tree interface
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    266214d View commit details
    Browse the repository at this point in the history
  4. pkg/adt: README initial commit

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    594e7d6 View commit details
    Browse the repository at this point in the history
  5. pkg/adt: README "IntervalTree.Delete" test case images

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    d938435 View commit details
    Browse the repository at this point in the history
  6. pkg/adt: test node "11" deletion

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    b315236 View commit details
    Browse the repository at this point in the history
  7. pkg/adt: add "IntervalTree.Delete" failure case

    Described in etcd-io#10877.
    
    "black-height" property: Every path from a node to any descendant leaf node must have the same number of black nodes.
    
    Expected
    
        After deleting 11 (requires rebalancing):
                                [510,511]
                                 /      \
                       ----------        --------------------------
                      /                                            \
                  [383,384]                                       [830,831]
                  /       \                                      /          \
                 /         \                                    /            \
          [261,262](red)  [410,411]                     [647,648]           [899,900](red)
              /               \                              \                      /    \
             /                 \                              \                    /      \
          [82,83]           [292,293]                      [815,816](red)   [888,889]    [972,973]
                \                                                           /
                 \                                                         /
              [238,239](red)                                       [953,954](red)
    
    Got
    
        After deleting 11 (requires rebalancing):
                                [510,511]
                                 /      \
                       ----------        --------------------------
                      /                                            \
                  [82,83]                                       [830,831]
                        \                                      /          \
                         \                                    /            \
                      [383,384]                        [647,648]            [899,900]
                      /       \                              \                  /    \
                     /         \                              \                /      \
               [261,262]      [410,411]                      [815,816]   [888,889]    [972,973]
                 /   \                                                                  /
                /     \                                                                /
         [238,239]   [292,293]                                                  [953,954]
    
    This violates "black-height" property.
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    f4341fd View commit details
    Browse the repository at this point in the history
  8. pkg/adt: mask test failure, add TODO

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    c25f746 View commit details
    Browse the repository at this point in the history
  9. pkg/adt: document textbook implementation with pseudo-code

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    33e4877 View commit details
    Browse the repository at this point in the history
  10. pkg/adt: fix interval tree black-height property based on rbtree

    Author: xkey <xk33430@ly.com>
    ref. etcd-io#10978
    
    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    xkey authored and gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    036bd1a View commit details
    Browse the repository at this point in the history
  11. pkg/adt: remove TODO

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    ffe90b9 View commit details
    Browse the repository at this point in the history
  12. *: use new adt.IntervalTree interface

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    0812410 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2019

  1. Makefile/build: sync with 3.4 branch

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    cc1591a View commit details
    Browse the repository at this point in the history
  2. scripts: update release, genproto, dep

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d7fc66b View commit details
    Browse the repository at this point in the history
  3. go.mod: migrate to Go module

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    27cf72b View commit details
    Browse the repository at this point in the history
  4. vendor: regenerate, upgrade gRPC to 1.23.0

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    830bba3 View commit details
    Browse the repository at this point in the history
  5. etcdserver/etcdserverpb/rpc.proto: add watch progress/fragment

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    9f7294f View commit details
    Browse the repository at this point in the history
  6. *: regenerate proto

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d167714 View commit details
    Browse the repository at this point in the history
  7. tests: update

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    92a7504 View commit details
    Browse the repository at this point in the history
  8. etcdserver/api/v3rpc: support watch fragmentation

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    5a678bb View commit details
    Browse the repository at this point in the history
  9. pkg/*: add

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    7eb9a29 View commit details
    Browse the repository at this point in the history
  10. raft: fix compile error in "Panic"

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a317433 View commit details
    Browse the repository at this point in the history
  11. clientv3: rewrite based on 3.4

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    9561f6b View commit details
    Browse the repository at this point in the history
  12. etcdserver: detect leader change on reads

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    e5c2dff View commit details
    Browse the repository at this point in the history
  13. integration: update

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    dbfc7bd View commit details
    Browse the repository at this point in the history
  14. travis.yml: fix, run e2e

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    f68fac6 View commit details
    Browse the repository at this point in the history
  15. functional: update

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    6e37ece View commit details
    Browse the repository at this point in the history
  16. integration: fix "HashKVRequest"

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b889245 View commit details
    Browse the repository at this point in the history
  17. integration: fix tests

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0ddda8c View commit details
    Browse the repository at this point in the history
  18. build: remove tools

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    61065db View commit details
    Browse the repository at this point in the history
  19. tests/e2e: fix

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    be3babf View commit details
    Browse the repository at this point in the history
  20. test: fix repo path

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    84508f7 View commit details
    Browse the repository at this point in the history
  21. travis: skip windows build

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    37d10dd View commit details
    Browse the repository at this point in the history
  22. travis: do not run functional for now

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    3c2b1cd View commit details
    Browse the repository at this point in the history
  23. auth: fix tests

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0e96b34 View commit details
    Browse the repository at this point in the history
  24. functional: add back, travis

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    e16b21b View commit details
    Browse the repository at this point in the history
  25. travis: fix functional tests

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    4f1e654 View commit details
    Browse the repository at this point in the history
  26. test: bump up timeout for e2e tests

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    c7c09c6 View commit details
    Browse the repository at this point in the history
  27. test: do not run "v2store" tests

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    33668f4 View commit details
    Browse the repository at this point in the history
  28. e2e: move

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    082c5e0 View commit details
    Browse the repository at this point in the history
  29. tests/e2e: add missing curl

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    95a5c57 View commit details
    Browse the repository at this point in the history
  30. version: 3.3.14-beta.0

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    1aa4af8 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2019

  1. *: test with Go 1.12.9

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    b196734 View commit details
    Browse the repository at this point in the history
  2. gitignore: track vendor directory

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    b9c976e View commit details
    Browse the repository at this point in the history
  3. go.mod: regenerate

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    d65219c View commit details
    Browse the repository at this point in the history
  4. vendor: regenerate

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    2f3aa89 View commit details
    Browse the repository at this point in the history
  5. version: 3.3.14-rc.0

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    9dd98b7 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2019

  1. Documentation/upgrades: special upgrade guides for >= 3.3.14

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 16, 2019
    Configuration menu
    Copy the full SHA
    af8cb6c View commit details
    Browse the repository at this point in the history
  2. version: 3.3.14

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 16, 2019
    Configuration menu
    Copy the full SHA
    5cf5d88 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2019

  1. go.mod: remove, change back to "glide"

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 19, 2019
    Configuration menu
    Copy the full SHA
    aa1e17a View commit details
    Browse the repository at this point in the history
  2. vendor: regenerate

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 19, 2019
    Configuration menu
    Copy the full SHA
    e94188b View commit details
    Browse the repository at this point in the history
  3. version: 3.3.15

    Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
    gyuho committed Aug 19, 2019
    Configuration menu
    Copy the full SHA
    94745a4 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2019

  1. *: fix gofmt

    jingyih committed Aug 20, 2019
    Configuration menu
    Copy the full SHA
    81fc7c2 View commit details
    Browse the repository at this point in the history
  2. scripts: fix updatebom.sh

    Remove "./cmd/vendor".
    jingyih committed Aug 20, 2019
    Configuration menu
    Copy the full SHA
    74cf4ae View commit details
    Browse the repository at this point in the history
  3. bom: regenerate

    jingyih committed Aug 20, 2019
    Configuration menu
    Copy the full SHA
    ffb43df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9244d2b View commit details
    Browse the repository at this point in the history
  5. Merge pull request etcd-io#11055 from jingyih/fix_gofmt_bom

    *: Fix gofmt bom
    gyuho authored Aug 20, 2019
    Configuration menu
    Copy the full SHA
    7f067ce View commit details
    Browse the repository at this point in the history
  6. Merge pull request etcd-io#11056 from jingyih/update_bbolt

    vendor: update bbolt to v1.3.3
    gyuho authored Aug 20, 2019
    Configuration menu
    Copy the full SHA
    a4f18a4 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2019

  1. mvcc: add store revision metrics

    Add experimental metrics etcd_debugging_mvcc_current_revision and
    etcd_debugging_mvcc_compact_revision.
    jingyih committed Sep 7, 2019
    Configuration menu
    Copy the full SHA
    8a8efa7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#11134 from jingyih/automated-cherry-pick-o…

    …f-#11126-origin-release-3.3
    
    Automated cherry pick of etcd-io#11126 on release-3.3
    jingyih authored Sep 7, 2019
    Configuration menu
    Copy the full SHA
    943832a View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2019

  1. etcdserver: cherry-pick skip client san verification option for 3.3 v…

    …ersion.
    
    Co-authored-by: Martin Weindel <martin.weindel@sap.com>
    Co-authored-by: Jingyi Hu <jingyih@google.com>
    Co-authored-by: Liming Liu <andyliuliming@outlook.com>
    3 people committed Oct 3, 2019
    Configuration menu
    Copy the full SHA
    86b1686 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d851911 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    02a27c0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request etcd-io#11201 from jingyih/automated-cherry-pick-o…

    …f-#11194-origin-release-3.3
    
    Automated cherry pick of etcd-io#11194 on release-3.3
    gyuho authored Oct 3, 2019
    Configuration menu
    Copy the full SHA
    1be7ab4 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2019

  1. clientv3: Replace endpoint.ParseHostPort with net.SplitHostPort to fi…

    …x IPv6 client endpoints
    jpbetz committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    4b227b6 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2019

  1. Merge pull request etcd-io#11216 from jpbetz/automated-cherry-pick-of…

    …-#11211-origin-release-3.3
    
    Automated cherry pick of etcd-io#11211
    jpbetz authored Oct 9, 2019
    Configuration menu
    Copy the full SHA
    7558b41 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2f585d View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#11215 from jpbetz/automated-cherry-pick-of…

    …-#11184-origin-release-3.3
    
    Automated cherry pick of etcd-io#11184
    jpbetz authored Oct 9, 2019
    Configuration menu
    Copy the full SHA
    ef61a56 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a311a80 View commit details
    Browse the repository at this point in the history
  5. Merge pull request etcd-io#11196 from andyliuliming/release-3.3-cherry

    etcdserver: cherry-pick skip client san verification option for 3.3 version.
    gyuho authored Oct 9, 2019
    Configuration menu
    Copy the full SHA
    011bd86 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2019

  1. vendor: v3.3.16

    jpbetz committed Oct 10, 2019
    Configuration menu
    Copy the full SHA
    3fae828 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3827d6b View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2019

  1. Merge pull request etcd-io#11236 from YoyinZyc/change-git-clone

    scripts: use https for git clone.
    gyuho authored Oct 11, 2019
    Configuration menu
    Copy the full SHA
    5e4d852 View commit details
    Browse the repository at this point in the history
  2. version: v3.3.17

    jpbetz committed Oct 11, 2019
    Configuration menu
    Copy the full SHA
    6d80523 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2019

  1. version: openshift-v4.0

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    da72322 View commit details
    Browse the repository at this point in the history
  2. Dockerfile: add etcdctl

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    aca63f4 View commit details
    Browse the repository at this point in the history
  3. Dockerfile.*: Fix "etcd is distributed" -> "etcd is a distributed"

    Correcting a typo from 2f10964 (version: openshift-v4.0, 2018-11-29).
    wking authored and hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    9453509 View commit details
    Browse the repository at this point in the history
  4. Dockerfile: resolve issue where binary was not properly copied from b…

    …uild.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    169cbd5 View commit details
    Browse the repository at this point in the history
  5. OWNERS: add

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    7a0c204 View commit details
    Browse the repository at this point in the history
  6. Dockerfile: set coreos org as canonical for release-3.3

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    49b3ba8 View commit details
    Browse the repository at this point in the history
  7. Dockerfile: bump golang to 1.11

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    de6b8a9 View commit details
    Browse the repository at this point in the history
  8. Dockerfile: use build instead of make build

    make build performs a sanity test on the binary image which causes problems for unsupport arch. Because we run full CI tests against the image this check is not nessisary and will allow images to be build regardless of arch.
    
    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    be82b48 View commit details
    Browse the repository at this point in the history
  9. Dockerfile: bump golang 1.12

    Signed-off-by: Sam Batschelet <sbatsche@redhat.com>
    hexfusion committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    af8d37c View commit details
    Browse the repository at this point in the history