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

Bug 1870189: Bump v3.4.14 #65

Merged
merged 106 commits into from
Mar 2, 2021

Commits on Jun 5, 2020

  1. etcdserver, et al: add --unsafe-no-fsync flag

    This makes it possible to run an etcd node for testing and development
    without placing lots of load on the file system.
    
    Fixes etcd-io#11930.
    
    Signed-off-by: David Crawshaw <[email protected]>
    crawshaw authored and jpbetz committed Jun 5, 2020
    Configuration menu
    Copy the full SHA
    78f6798 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#11977 from jpbetz/automated-cherry-pick-of…

    …-#11946-release-3.4
    
    Automated cherry pick of etcd-io#11946
    gyuho authored Jun 5, 2020
    Configuration menu
    Copy the full SHA
    91b1a91 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2020

  1. pkg: check file stats

    modify file util.
    spzala committed Jun 20, 2020
    Configuration menu
    Copy the full SHA
    434f7e8 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2020

  1. embed: fix compaction runtime err

    Handle negative value input which currently gives a runtime error.
    spzala committed Jun 21, 2020
    Configuration menu
    Copy the full SHA
    05c441f View commit details
    Browse the repository at this point in the history
  2. wal: fix panic when decoder not set

    Handle the related panic and clarify doc.
    spzala committed Jun 21, 2020
    Configuration menu
    Copy the full SHA
    7d1cf64 View commit details
    Browse the repository at this point in the history
  3. Discovery: do not allow passing negative cluster size

    When an etcd instance attempts to perform service discovery, if a
    cluster size with negative value  is provided, the etcd instance
    will panic without recovery because of
    spzala committed Jun 21, 2020
    Configuration menu
    Copy the full SHA
    9a24f73 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    47001f2 View commit details
    Browse the repository at this point in the history
  5. Documentation: note on password strength

    mitake authored and spzala committed Jun 21, 2020
    Configuration menu
    Copy the full SHA
    36f8dee View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6f011ce View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    963b242 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3d8e9a3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c69efda View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2020

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

    …-#11841-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11841
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    6dab8af View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12043 from spzala/automated-cherry-pick-of…

    …-#11830-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11830
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    c37245e View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#12042 from spzala/automated-cherry-pick-of…

    …-#11818-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11818
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    8292fd5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request etcd-io#12040 from spzala/automated-cherry-pick-of…

    …-#11796-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11796
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    e151faf View commit details
    Browse the repository at this point in the history
  5. Merge pull request etcd-io#12038 from spzala/automated-cherry-pick-of…

    …-#11608-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11608
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    7adbfa1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request etcd-io#12039 from spzala/automated-cherry-pick-of…

    …-#11845-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11845
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    368ff75 View commit details
    Browse the repository at this point in the history
  7. Merge pull request etcd-io#12041 from spzala/automated-cherry-pick-of…

    …-#11795-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11795
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    c8b3c6f View commit details
    Browse the repository at this point in the history
  8. Merge pull request etcd-io#12037 from spzala/automated-cherry-pick-of…

    …-#11807-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11807
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    493f15c View commit details
    Browse the repository at this point in the history
  9. Merge pull request etcd-io#12035 from spzala/automated-cherry-pick-of…

    …-#11787-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11787
    gyuho authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    37ac222 View commit details
    Browse the repository at this point in the history
  10. wal: check out of range slice in "ReadAll", "decoder"

    wal: add slice bound checks in decoder
    
    CHANGELOG-3.5: add wal slice bound check
    CHANGELOG-3.5: add "decodeRecord"
    
    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho authored and spzala committed Jun 22, 2020
    Configuration menu
    Copy the full SHA
    4571e52 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. clientv3: cancel watches proactively on client context cancellation

    Currently, watch cancel requests are only sent to the server after a
    message comes through on a watch where the client has cancelled. This
    means that cancelled watches that don't receive any new messages are
    never cancelled; they persist for the lifetime of the client stream.
    This has negative connotations for locking applications where a watch
    may observe a key which might never change again after cancellation,
    leading to many accumulating watches on the server.
    
    By cancelling proactively, in most cases we simply move the cancel
    request to happen earlier, and additionally we solve the case where the
    cancel request would never be sent.
    
    Fixes etcd-io#9416
    Heavy inspiration drawn from the solutions proposed there.
    jackkleeman authored and tangcong committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    36452a1 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2020

  1. etcdserver:FDUsage set ticker to 10 minute from 5 seconds. This ticke…

    …r will check File Descriptor Requirements ,and count all fds in used. And recorded some logs when in used >= limit/5*4. Just recorded message. If fds was more than 10K,It's low performance due to FDUsage() works. So need to increase it.
    
    see etcd-io#11969 for more detail.
    cfc4n committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    ee96347 View commit details
    Browse the repository at this point in the history
  2. doc: add TLS related warnings

    xiang90 authored and spzala committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    b86bb61 View commit details
    Browse the repository at this point in the history
  3. etcdmain: fix shadow error

    tangcong committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    e42d7b5 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

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

    …-#11798-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11798
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    2212a84 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12072 from tangcong/automated-cherry-pick-…

    …of-#12066-origin-release-3.4
    
    Automated cherry pick of etcd-io#12066
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    a4f4294 View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#12070 from spzala/automated-cherry-pick-of…

    …-#12060-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12060
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    1a12810 View commit details
    Browse the repository at this point in the history
  4. Merge pull request etcd-io#12064 from cfc4n/automated-cherry-pick-of-…

    …#11986-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11986
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    45192cf View commit details
    Browse the repository at this point in the history
  5. Merge pull request etcd-io#12055 from tangcong/automated-cherry-pick-…

    …of-#11850-origin-release-3.4
    
    Automated cherry pick of etcd-io#11850
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    83fc96d View commit details
    Browse the repository at this point in the history
  6. Merge pull request etcd-io#12048 from spzala/automated-cherry-pick-of…

    …-#11793-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11793
    gyuho authored Jun 25, 2020
    Configuration menu
    Copy the full SHA
    31e49a4 View commit details
    Browse the repository at this point in the history
  7. auth: return incorrect result 'ErrUserNotFound' when client request w…

    …ithout username or username was empty.
    
    Fiexs etcd-io#12004 .
    cfc4n committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    490c613 View commit details
    Browse the repository at this point in the history
  8. mvcc: chanLen 1024 is to biger,and it used more memory. 128 seems to …

    …be enough. Sometimes the consumption speed is more than the production speed.
    
    See etcd-io#11906 for more detail.
    cfc4n committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    7b99863 View commit details
    Browse the repository at this point in the history
  9. auth: Customize simpleTokenTTL settings.

    see etcd-io#11978 for more detail.
    cfc4n committed Jun 25, 2020
    Configuration menu
    Copy the full SHA
    4488595 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2020

  1. Configuration menu
    Copy the full SHA
    e5424fc View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12081 from spzala/automated-cherry-pick-of…

    …-#11945-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11945
    gyuho authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    81a2edc View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#12077 from cfc4n/automated-cherry-pick-of-…

    …#11980-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11980
    gyuho authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    d5dec73 View commit details
    Browse the repository at this point in the history
  4. Merge pull request etcd-io#12074 from cfc4n/automated-cherry-pick-of-…

    …#12005-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12005
    gyuho authored Jun 26, 2020
    Configuration menu
    Copy the full SHA
    99e893d View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2020

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

Commits on Jul 1, 2020

  1. etcdmain: fix shadow error

    tangcong committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    a4667f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7dec4c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2020

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

    …-#12092-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12092
    spzala authored Jul 5, 2020
    Configuration menu
    Copy the full SHA
    85cc4de View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2020

  1. Merge pull request etcd-io#12101 from tangcong/automated-cherry-pick-…

    …of-#12100-origin-release-3.4
    
    Automated cherry pick of etcd-io#12100
    gyuho authored Jul 6, 2020
    Configuration menu
    Copy the full SHA
    32583af View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12089 from tangcong/automated-cherry-pick-…

    …of-#11997-origin-release-3.4
    
    Automated cherry pick of etcd-io#11997
    gyuho authored Jul 6, 2020
    Configuration menu
    Copy the full SHA
    a8454e4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#12076 from cfc4n/automated-cherry-pick-of-…

    …#11987-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11987
    gyuho authored Jul 6, 2020
    Configuration menu
    Copy the full SHA
    2acdf88 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2020

  1. pkg: consider umask when use MkdirAll

    os.MkdirAll creates directory before umask so make sure that a desired
    permission is set after creating a directory with MkdirAll. Use the
    existing TouchDirAll function which checks for permission if dir is already
    exist and when create a new dir.
    spzala committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    3193311 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12112 from spzala/automated-cherry-pick-of…

    …-#12018-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12018
    gyuho authored Jul 7, 2020
    Configuration menu
    Copy the full SHA
    d3a702a View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2020

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

Commits on Jul 13, 2020

  1. Documentation: note on data encryption

    mitake authored and spzala committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    67bfc31 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12127 from spzala/automated-cherry-pick-of…

    …-#12012-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12012
    spzala authored Jul 13, 2020
    Configuration menu
    Copy the full SHA
    a2c3748 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. Merge pull request etcd-io#12106 from bart0sh/PR001-cherry-pick-chang…

    …e-protobuf-field-type-from-int-to-int64
    
    etcdserver: change protobuf field type from int to int64 (etcd-io#12000)
    jingyih authored Jul 15, 2020
    Configuration menu
    Copy the full SHA
    7b82704 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2020

  1. version: 3.4.10

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    18dfb9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0372cfc View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2020

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

Commits on Aug 13, 2020

  1. pkg/runtime: optimize FDUsage by removing sort

    No need sort when we just want the counts.
    
    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    cf558ee View commit details
    Browse the repository at this point in the history
  2. etcdserver: add OS level FD metrics

    Similar counts are exposed via Prometheus.
    This adds the one that are perceived by etcd server.
    
    e.g.
    
    os_fd_limit 120000
    os_fd_used 14
    process_cpu_seconds_total 0.31
    process_max_fds 120000
    process_open_fds 17
    
    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    0080741 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fcab5a View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2020

  1. Merge pull request etcd-io#12189 from jingyih/automated-cherry-pick-o…

    …f-#11452-etcd-io#12187-upstream-release-3.4
    
    Automated cherry pick of etcd-io#11452 etcd-io#12187 on release 3.4
    gyuho authored Aug 14, 2020
    Configuration menu
    Copy the full SHA
    8a4afdb View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2020

  1. *: add experimental flag for watch notify interval

    Signed-off-by: Gyuho Lee <[email protected]>
    jingyih authored and gyuho committed Aug 15, 2020
    Configuration menu
    Copy the full SHA
    c60dabf View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2020

  1. *: fix backport of PR12216

    Fix bugs introduced in commit c60dabf
    jingyih committed Aug 16, 2020
    Configuration menu
    Copy the full SHA
    75d5e78 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2020

  1. Revert "etcdserver/api/v3rpc: "MemberList" never return non-empty Cli…

    …entURLs"
    
    This reverts commit 0372cfc.
    gyuho committed Aug 18, 2020
    Configuration menu
    Copy the full SHA
    299e0f1 View commit details
    Browse the repository at this point in the history
  2. version: 3.4.11

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Aug 18, 2020
    Configuration menu
    Copy the full SHA
    bc44e36 View commit details
    Browse the repository at this point in the history
  3. Merge pull request etcd-io#12226 from jingyih/fix_backport_PR12216

    *: add plog logging to the backport of PR12216
    gyuho authored Aug 18, 2020
    Configuration menu
    Copy the full SHA
    e71e0c5 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. Configuration menu
    Copy the full SHA
    b8878ea View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12239 from liggitt/slow-v2-panic-3.4

    [3.4] etcdserver: Avoid panics logging slow v2 requests in integration tests
    gyuho authored Aug 19, 2020
    Configuration menu
    Copy the full SHA
    c07cba0 View commit details
    Browse the repository at this point in the history
  3. version: 3.4.12

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    17cef6e View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. Automated cherry pick of etcd-io#12243 on release 3.4

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    46a0a44 View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12244 from hexfusion/automated-cherry-pick…

    …-of-#12243-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12243 on release 3.4
    hexfusion authored Aug 21, 2020
    Configuration menu
    Copy the full SHA
    7cd5872 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2020

  1. pkg: file stat warning

    Provide warning and doc instead of enforcing file permission.
    spzala committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    d5ebbbc View commit details
    Browse the repository at this point in the history
  2. Merge pull request etcd-io#12250 from spzala/automated-cherry-pick-of…

    …-#12242-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12242
    gyuho authored Aug 24, 2020
    Configuration menu
    Copy the full SHA
    781bde7 View commit details
    Browse the repository at this point in the history
  3. version: 3.4.13

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    ae9734e View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

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

Commits on Sep 10, 2020

  1. Merge pull request etcd-io#12280 from jingyih/automated-cherry-pick-o…

    …f-#12271-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12271 on release 3.4
    jpbetz authored Sep 10, 2020
    Configuration menu
    Copy the full SHA
    dd1b699 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2020

  1. etcdserver: add ConfChangeAddLearnerNode to the list of config changes

    To fix a panic that happens when trying to get ids of etcd members in
    force new cluster mode, the issue happen if the cluster previously had
    etcd learner nodes added to the cluster
    
    Fixes etcd-io#12285
    galal-hussein committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    3019246 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Merge pull request etcd-io#12299 from galal-hussein/fix_panic_34

    [Backport 3.4] etcdserver: add ConfChangeAddLearnerNode to the list of config changes
    jingyih authored Sep 15, 2020
    Configuration menu
    Copy the full SHA
    7e2d426 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

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

Commits on Oct 12, 2020

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

    …#12264-upstream-release-3.4
    
    Automated cherry pick of etcd-io#12264
    gyuho authored Oct 12, 2020
    Configuration menu
    Copy the full SHA
    eb0fb0e View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2020

  1. tools/etcd-dump-metrics: validate exec cmd args

    To prevent arbitrary command invocations.
    
    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    e3b29b6 View commit details
    Browse the repository at this point in the history
  2. pkg/netutil: remove unused "iptables" wrapper

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    a4b43b3 View commit details
    Browse the repository at this point in the history
  3. version: 3.4.14

    Signed-off-by: Gyuho Lee <[email protected]>
    gyuho committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    8a03d2e View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2020

  1. version: openshift-v4.0

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    e3a6e53 View commit details
    Browse the repository at this point in the history
  2. Dockerfile: add etcdctl

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    71105c2 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 Dec 15, 2020
    Configuration menu
    Copy the full SHA
    e1488b8 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 <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    056745d View commit details
    Browse the repository at this point in the history
  5. OWNERS: add

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    d0c4369 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 <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    a0ab7b0 View commit details
    Browse the repository at this point in the history
  7. 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 <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    aea1f70 View commit details
    Browse the repository at this point in the history
  8. Dockerfile: bump golang 1.12

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    9305d2f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5cce7e9 View commit details
    Browse the repository at this point in the history
  10. build openshift tools with etcd

    deads2k authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    d4e6872 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    34bc15b View commit details
    Browse the repository at this point in the history
  12. Archive data-dir if target member is unstarted

    retroflexer authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    420e702 View commit details
    Browse the repository at this point in the history
  13. Archive data-dir if target member is unstarted

    retroflexer authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    16c163a View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d089c92 View commit details
    Browse the repository at this point in the history
  15. If we weren't able to get client or get target member but memberDir e…

    …xists, go ahead and start.
    retroflexer authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    cc39358 View commit details
    Browse the repository at this point in the history
  16. list all peers in initial-cluster

    deads2k authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    b4bc9e8 View commit details
    Browse the repository at this point in the history
  17. *: migrate openshift assets to new etcd org

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    fd6f3fb View commit details
    Browse the repository at this point in the history
  18. Revert "pkg, clientv3, etcdmain: let grpcproxy rise an error when its…

    … cert has non empty CN"
    
    CARRY:
    
    This patch is required to allow metrics cert to auth with CN in cert.
    
    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    728f48b View commit details
    Browse the repository at this point in the history
  19. make evaluation of targetMember strict

    deads2k authored and hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    8dee987 View commit details
    Browse the repository at this point in the history
  20. go.mod: drop go 1.14

    CARRY:
    
    During the release of 3.4.9 gyuho bumped go.mod to 1.14. Since the release is expected to use 1.12 we will not keep the commit.
    
    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    c3aff57 View commit details
    Browse the repository at this point in the history
  21. discover-etcd-initial-cluster: improve error handling when we dont sc…

    …ale member
    
    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    4938e7b View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f8ef071 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    2ffa177 View commit details
    Browse the repository at this point in the history
  24. OWNERS: add component

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    b926547 View commit details
    Browse the repository at this point in the history
  25. *: tidy

    Signed-off-by: Sam Batschelet <[email protected]>
    hexfusion committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    b60e76b View commit details
    Browse the repository at this point in the history