-
Notifications
You must be signed in to change notification settings - Fork 22
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
Bug 1870189: Bump v3.4.14 #65
Commits on Jun 5, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 78f6798 - Browse repository at this point
Copy the full SHA 78f6798View commit details -
Merge pull request etcd-io#11977 from jpbetz/automated-cherry-pick-of…
…-#11946-release-3.4 Automated cherry pick of etcd-io#11946
Configuration menu - View commit details
-
Copy full SHA for 91b1a91 - Browse repository at this point
Copy the full SHA 91b1a91View commit details
Commits on Jun 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 434f7e8 - Browse repository at this point
Copy the full SHA 434f7e8View commit details
Commits on Jun 21, 2020
-
embed: fix compaction runtime err
Handle negative value input which currently gives a runtime error.
Configuration menu - View commit details
-
Copy full SHA for 05c441f - Browse repository at this point
Copy the full SHA 05c441fView commit details -
wal: fix panic when decoder not set
Handle the related panic and clarify doc.
Configuration menu - View commit details
-
Copy full SHA for 7d1cf64 - Browse repository at this point
Copy the full SHA 7d1cf64View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 9a24f73 - Browse repository at this point
Copy the full SHA 9a24f73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 47001f2 - Browse repository at this point
Copy the full SHA 47001f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36f8dee - Browse repository at this point
Copy the full SHA 36f8deeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f011ce - Browse repository at this point
Copy the full SHA 6f011ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 963b242 - Browse repository at this point
Copy the full SHA 963b242View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d8e9a3 - Browse repository at this point
Copy the full SHA 3d8e9a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c69efda - Browse repository at this point
Copy the full SHA c69efdaView commit details
Commits on Jun 22, 2020
-
Merge pull request etcd-io#12044 from spzala/automated-cherry-pick-of…
…-#11841-upstream-release-3.4 Automated cherry pick of etcd-io#11841
Configuration menu - View commit details
-
Copy full SHA for 6dab8af - Browse repository at this point
Copy the full SHA 6dab8afView commit details -
Merge pull request etcd-io#12043 from spzala/automated-cherry-pick-of…
…-#11830-upstream-release-3.4 Automated cherry pick of etcd-io#11830
Configuration menu - View commit details
-
Copy full SHA for c37245e - Browse repository at this point
Copy the full SHA c37245eView commit details -
Merge pull request etcd-io#12042 from spzala/automated-cherry-pick-of…
…-#11818-upstream-release-3.4 Automated cherry pick of etcd-io#11818
Configuration menu - View commit details
-
Copy full SHA for 8292fd5 - Browse repository at this point
Copy the full SHA 8292fd5View commit details -
Merge pull request etcd-io#12040 from spzala/automated-cherry-pick-of…
…-#11796-upstream-release-3.4 Automated cherry pick of etcd-io#11796
Configuration menu - View commit details
-
Copy full SHA for e151faf - Browse repository at this point
Copy the full SHA e151fafView commit details -
Merge pull request etcd-io#12038 from spzala/automated-cherry-pick-of…
…-#11608-upstream-release-3.4 Automated cherry pick of etcd-io#11608
Configuration menu - View commit details
-
Copy full SHA for 7adbfa1 - Browse repository at this point
Copy the full SHA 7adbfa1View commit details -
Merge pull request etcd-io#12039 from spzala/automated-cherry-pick-of…
…-#11845-upstream-release-3.4 Automated cherry pick of etcd-io#11845
Configuration menu - View commit details
-
Copy full SHA for 368ff75 - Browse repository at this point
Copy the full SHA 368ff75View commit details -
Merge pull request etcd-io#12041 from spzala/automated-cherry-pick-of…
…-#11795-upstream-release-3.4 Automated cherry pick of etcd-io#11795
Configuration menu - View commit details
-
Copy full SHA for c8b3c6f - Browse repository at this point
Copy the full SHA c8b3c6fView commit details -
Merge pull request etcd-io#12037 from spzala/automated-cherry-pick-of…
…-#11807-upstream-release-3.4 Automated cherry pick of etcd-io#11807
Configuration menu - View commit details
-
Copy full SHA for 493f15c - Browse repository at this point
Copy the full SHA 493f15cView commit details -
Merge pull request etcd-io#12035 from spzala/automated-cherry-pick-of…
…-#11787-upstream-release-3.4 Automated cherry pick of etcd-io#11787
Configuration menu - View commit details
-
Copy full SHA for 37ac222 - Browse repository at this point
Copy the full SHA 37ac222View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 4571e52 - Browse repository at this point
Copy the full SHA 4571e52View commit details
Commits on Jun 23, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for 36452a1 - Browse repository at this point
Copy the full SHA 36452a1View commit details
Commits on Jun 24, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for ee96347 - Browse repository at this point
Copy the full SHA ee96347View commit details -
Configuration menu - View commit details
-
Copy full SHA for b86bb61 - Browse repository at this point
Copy the full SHA b86bb61View commit details -
Configuration menu - View commit details
-
Copy full SHA for e42d7b5 - Browse repository at this point
Copy the full SHA e42d7b5View commit details
Commits on Jun 25, 2020
-
Merge pull request etcd-io#12034 from spzala/automated-cherry-pick-of…
…-#11798-upstream-release-3.4 Automated cherry pick of etcd-io#11798
Configuration menu - View commit details
-
Copy full SHA for 2212a84 - Browse repository at this point
Copy the full SHA 2212a84View commit details -
Merge pull request etcd-io#12072 from tangcong/automated-cherry-pick-…
…of-#12066-origin-release-3.4 Automated cherry pick of etcd-io#12066
Configuration menu - View commit details
-
Copy full SHA for a4f4294 - Browse repository at this point
Copy the full SHA a4f4294View commit details -
Merge pull request etcd-io#12070 from spzala/automated-cherry-pick-of…
…-#12060-upstream-release-3.4 Automated cherry pick of etcd-io#12060
Configuration menu - View commit details
-
Copy full SHA for 1a12810 - Browse repository at this point
Copy the full SHA 1a12810View commit details -
Merge pull request etcd-io#12064 from cfc4n/automated-cherry-pick-of-…
…#11986-upstream-release-3.4 Automated cherry pick of etcd-io#11986
Configuration menu - View commit details
-
Copy full SHA for 45192cf - Browse repository at this point
Copy the full SHA 45192cfView commit details -
Merge pull request etcd-io#12055 from tangcong/automated-cherry-pick-…
…of-#11850-origin-release-3.4 Automated cherry pick of etcd-io#11850
Configuration menu - View commit details
-
Copy full SHA for 83fc96d - Browse repository at this point
Copy the full SHA 83fc96dView commit details -
Merge pull request etcd-io#12048 from spzala/automated-cherry-pick-of…
…-#11793-upstream-release-3.4 Automated cherry pick of etcd-io#11793
Configuration menu - View commit details
-
Copy full SHA for 31e49a4 - Browse repository at this point
Copy the full SHA 31e49a4View commit details -
auth: return incorrect result 'ErrUserNotFound' when client request w…
…ithout username or username was empty. Fiexs etcd-io#12004 .
Configuration menu - View commit details
-
Copy full SHA for 490c613 - Browse repository at this point
Copy the full SHA 490c613View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 7b99863 - Browse repository at this point
Copy the full SHA 7b99863View commit details -
auth: Customize simpleTokenTTL settings.
see etcd-io#11978 for more detail.
Configuration menu - View commit details
-
Copy full SHA for 4488595 - Browse repository at this point
Copy the full SHA 4488595View commit details
Commits on Jun 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e5424fc - Browse repository at this point
Copy the full SHA e5424fcView commit details -
Merge pull request etcd-io#12081 from spzala/automated-cherry-pick-of…
…-#11945-upstream-release-3.4 Automated cherry pick of etcd-io#11945
Configuration menu - View commit details
-
Copy full SHA for 81a2edc - Browse repository at this point
Copy the full SHA 81a2edcView commit details -
Merge pull request etcd-io#12077 from cfc4n/automated-cherry-pick-of-…
…#11980-upstream-release-3.4 Automated cherry pick of etcd-io#11980
Configuration menu - View commit details
-
Copy full SHA for d5dec73 - Browse repository at this point
Copy the full SHA d5dec73View commit details -
Merge pull request etcd-io#12074 from cfc4n/automated-cherry-pick-of-…
…#12005-upstream-release-3.4 Automated cherry pick of etcd-io#12005
Configuration menu - View commit details
-
Copy full SHA for 99e893d - Browse repository at this point
Copy the full SHA 99e893dView commit details
Commits on Jun 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0207d1d - Browse repository at this point
Copy the full SHA 0207d1dView commit details
Commits on Jul 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a4667f5 - Browse repository at this point
Copy the full SHA a4667f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7dec4c4 - Browse repository at this point
Copy the full SHA 7dec4c4View commit details
Commits on Jul 5, 2020
-
Merge pull request etcd-io#12103 from spzala/automated-cherry-pick-of…
…-#12092-upstream-release-3.4 Automated cherry pick of etcd-io#12092
Configuration menu - View commit details
-
Copy full SHA for 85cc4de - Browse repository at this point
Copy the full SHA 85cc4deView commit details
Commits on Jul 6, 2020
-
Merge pull request etcd-io#12101 from tangcong/automated-cherry-pick-…
…of-#12100-origin-release-3.4 Automated cherry pick of etcd-io#12100
Configuration menu - View commit details
-
Copy full SHA for 32583af - Browse repository at this point
Copy the full SHA 32583afView commit details -
Merge pull request etcd-io#12089 from tangcong/automated-cherry-pick-…
…of-#11997-origin-release-3.4 Automated cherry pick of etcd-io#11997
Configuration menu - View commit details
-
Copy full SHA for a8454e4 - Browse repository at this point
Copy the full SHA a8454e4View commit details -
Merge pull request etcd-io#12076 from cfc4n/automated-cherry-pick-of-…
…#11987-upstream-release-3.4 Automated cherry pick of etcd-io#11987
Configuration menu - View commit details
-
Copy full SHA for 2acdf88 - Browse repository at this point
Copy the full SHA 2acdf88View commit details
Commits on Jul 7, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for 3193311 - Browse repository at this point
Copy the full SHA 3193311View commit details -
Merge pull request etcd-io#12112 from spzala/automated-cherry-pick-of…
…-#12018-upstream-release-3.4 Automated cherry pick of etcd-io#12018
Configuration menu - View commit details
-
Copy full SHA for d3a702a - Browse repository at this point
Copy the full SHA d3a702aView commit details
Commits on Jul 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ed28c76 - Browse repository at this point
Copy the full SHA ed28c76View commit details
Commits on Jul 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 67bfc31 - Browse repository at this point
Copy the full SHA 67bfc31View commit details -
Merge pull request etcd-io#12127 from spzala/automated-cherry-pick-of…
…-#12012-upstream-release-3.4 Automated cherry pick of etcd-io#12012
Configuration menu - View commit details
-
Copy full SHA for a2c3748 - Browse repository at this point
Copy the full SHA a2c3748View commit details
Commits on Jul 15, 2020
-
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)
Configuration menu - View commit details
-
Copy full SHA for 7b82704 - Browse repository at this point
Copy the full SHA 7b82704View commit details
Commits on Jul 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 18dfb9c - Browse repository at this point
Copy the full SHA 18dfb9cView commit details -
etcdserver/api/v3rpc: "MemberList" never return non-empty ClientURLs
Signed-off-by: Gyuho Lee <[email protected]> cr https://code.amazon.com/reviews/CR-29712724
Configuration menu - View commit details
-
Copy full SHA for 0372cfc - Browse repository at this point
Copy the full SHA 0372cfcView commit details
Commits on Jul 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for e800c62 - Browse repository at this point
Copy the full SHA e800c62View commit details
Commits on Aug 13, 2020
-
pkg/runtime: optimize FDUsage by removing sort
No need sort when we just want the counts. Signed-off-by: Gyuho Lee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cf558ee - Browse repository at this point
Copy the full SHA cf558eeView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 0080741 - Browse repository at this point
Copy the full SHA 0080741View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6fcab5a - Browse repository at this point
Copy the full SHA 6fcab5aView commit details
Commits on Aug 14, 2020
-
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
Configuration menu - View commit details
-
Copy full SHA for 8a4afdb - Browse repository at this point
Copy the full SHA 8a4afdbView commit details
Commits on Aug 15, 2020
-
*: add experimental flag for watch notify interval
Signed-off-by: Gyuho Lee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c60dabf - Browse repository at this point
Copy the full SHA c60dabfView commit details
Commits on Aug 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 75d5e78 - Browse repository at this point
Copy the full SHA 75d5e78View commit details
Commits on Aug 18, 2020
-
Revert "etcdserver/api/v3rpc: "MemberList" never return non-empty Cli…
…entURLs" This reverts commit 0372cfc.
Configuration menu - View commit details
-
Copy full SHA for 299e0f1 - Browse repository at this point
Copy the full SHA 299e0f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc44e36 - Browse repository at this point
Copy the full SHA bc44e36View commit details -
Merge pull request etcd-io#12226 from jingyih/fix_backport_PR12216
*: add plog logging to the backport of PR12216
Configuration menu - View commit details
-
Copy full SHA for e71e0c5 - Browse repository at this point
Copy the full SHA e71e0c5View commit details
Commits on Aug 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b8878ea - Browse repository at this point
Copy the full SHA b8878eaView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for c07cba0 - Browse repository at this point
Copy the full SHA c07cba0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17cef6e - Browse repository at this point
Copy the full SHA 17cef6eView commit details
Commits on Aug 21, 2020
-
Automated cherry pick of etcd-io#12243 on release 3.4
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 46a0a44 - Browse repository at this point
Copy the full SHA 46a0a44View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 7cd5872 - Browse repository at this point
Copy the full SHA 7cd5872View commit details
Commits on Aug 24, 2020
-
Provide warning and doc instead of enforcing file permission.
Configuration menu - View commit details
-
Copy full SHA for d5ebbbc - Browse repository at this point
Copy the full SHA d5ebbbcView commit details -
Merge pull request etcd-io#12250 from spzala/automated-cherry-pick-of…
…-#12242-upstream-release-3.4 Automated cherry pick of etcd-io#12242
Configuration menu - View commit details
-
Copy full SHA for 781bde7 - Browse repository at this point
Copy the full SHA 781bde7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae9734e - Browse repository at this point
Copy the full SHA ae9734eView commit details
Commits on Sep 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f44aaf8 - Browse repository at this point
Copy the full SHA f44aaf8View commit details
Commits on Sep 10, 2020
-
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
Configuration menu - View commit details
-
Copy full SHA for dd1b699 - Browse repository at this point
Copy the full SHA dd1b699View commit details
Commits on Sep 14, 2020
-
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
Configuration menu - View commit details
-
Copy full SHA for 3019246 - Browse repository at this point
Copy the full SHA 3019246View commit details
Commits on Sep 15, 2020
-
Merge pull request etcd-io#12299 from galal-hussein/fix_panic_34
[Backport 3.4] etcdserver: add ConfChangeAddLearnerNode to the list of config changes
Configuration menu - View commit details
-
Copy full SHA for 7e2d426 - Browse repository at this point
Copy the full SHA 7e2d426View commit details
Commits on Sep 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 40b7107 - Browse repository at this point
Copy the full SHA 40b7107View commit details
Commits on Oct 12, 2020
-
Merge pull request etcd-io#12356 from cfc4n/automated-cherry-pick-of-…
…#12264-upstream-release-3.4 Automated cherry pick of etcd-io#12264
Configuration menu - View commit details
-
Copy full SHA for eb0fb0e - Browse repository at this point
Copy the full SHA eb0fb0eView commit details
Commits on Nov 25, 2020
-
tools/etcd-dump-metrics: validate exec cmd args
To prevent arbitrary command invocations. Signed-off-by: Gyuho Lee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e3b29b6 - Browse repository at this point
Copy the full SHA e3b29b6View commit details -
pkg/netutil: remove unused "iptables" wrapper
Signed-off-by: Gyuho Lee <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a4b43b3 - Browse repository at this point
Copy the full SHA a4b43b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a03d2e - Browse repository at this point
Copy the full SHA 8a03d2eView commit details
Commits on Dec 15, 2020
-
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e3a6e53 - Browse repository at this point
Copy the full SHA e3a6e53View commit details -
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 71105c2 - Browse repository at this point
Copy the full SHA 71105c2View commit details -
Dockerfile.*: Fix "etcd is distributed" -> "etcd is a distributed"
Correcting a typo from 2f10964 (version: openshift-v4.0, 2018-11-29).
Configuration menu - View commit details
-
Copy full SHA for e1488b8 - Browse repository at this point
Copy the full SHA e1488b8View commit details -
Dockerfile: resolve issue where binary was not properly copied from b…
…uild. Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 056745d - Browse repository at this point
Copy the full SHA 056745dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d0c4369 - Browse repository at this point
Copy the full SHA d0c4369View commit details -
Dockerfile: set coreos org as canonical for release-3.3
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a0ab7b0 - Browse repository at this point
Copy the full SHA a0ab7b0View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for aea1f70 - Browse repository at this point
Copy the full SHA aea1f70View commit details -
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9305d2f - Browse repository at this point
Copy the full SHA 9305d2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cce7e9 - Browse repository at this point
Copy the full SHA 5cce7e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d4e6872 - Browse repository at this point
Copy the full SHA d4e6872View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34bc15b - Browse repository at this point
Copy the full SHA 34bc15bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 420e702 - Browse repository at this point
Copy the full SHA 420e702View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16c163a - Browse repository at this point
Copy the full SHA 16c163aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d089c92 - Browse repository at this point
Copy the full SHA d089c92View commit details -
If we weren't able to get client or get target member but memberDir e…
…xists, go ahead and start.
Configuration menu - View commit details
-
Copy full SHA for cc39358 - Browse repository at this point
Copy the full SHA cc39358View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4bc9e8 - Browse repository at this point
Copy the full SHA b4bc9e8View commit details -
*: migrate openshift assets to new etcd org
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fd6f3fb - Browse repository at this point
Copy the full SHA fd6f3fbView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 728f48b - Browse repository at this point
Copy the full SHA 728f48bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8dee987 - Browse repository at this point
Copy the full SHA 8dee987View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for c3aff57 - Browse repository at this point
Copy the full SHA c3aff57View commit details -
discover-etcd-initial-cluster: improve error handling when we dont sc…
…ale member Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4938e7b - Browse repository at this point
Copy the full SHA 4938e7bView commit details -
Updating ose-etcd builder & base images to be consistent with ART
Configuration menu - View commit details
-
Copy full SHA for f8ef071 - Browse repository at this point
Copy the full SHA f8ef071View commit details -
Updating ose-etcd builder & base images to be consistent with ART
Configuration menu - View commit details
-
Copy full SHA for 2ffa177 - Browse repository at this point
Copy the full SHA 2ffa177View commit details -
Signed-off-by: Sam Batschelet <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b926547 - Browse repository at this point
Copy the full SHA b926547View commit details -
Configuration menu - View commit details
-
Copy full SHA for b60e76b - Browse repository at this point
Copy the full SHA b60e76bView commit details