Release | Status | Start | End of Life |
---|---|---|---|
1.5 | End of Life | May 3, 2021 | February 28, 2023 |
1.6 | LTS | February 15, 2022 | max(February 15, 2025 or next LTS + 6 months) |
1.7 | Active | March 10, 2023 | active(release of 2.0 + 6 months), extended(EOL of 1.6) |
2.0 | Next | TBD | TBD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 6.5.0-1021-azure Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="x86_64-linux-gnu-gcc-11 (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110400 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"os" | |
"reflect" | |
"sort" | |
"strconv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"strings" | |
"sync" | |
corev1 "k8s.io/api/core/v1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From aa157746c01806af89f645ed2c5df8be45c1790d Mon Sep 17 00:00:00 2001 | |
From: Wei Fu <[email protected]> | |
Date: Thu, 24 Aug 2023 07:39:25 +0000 | |
Subject: [PATCH] delete v1.16.0 deps | |
Signed-off-by: Wei Fu <[email protected]> | |
--- | |
api/etcdserverpb/gw/rpc.pb.gw.go | 170 ++++----- | |
pkg/go.mod | 11 +- | |
pkg/go.sum | 15 +- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c4fc29e2b59863572b62a539e03e545bc7caaac7 Mon Sep 17 00:00:00 2001 | |
From: Wei Fu <[email protected]> | |
Date: Wed, 23 Aug 2023 04:09:03 +0000 | |
Subject: [PATCH] add legacygwjsonpb | |
Signed-off-by: Wei Fu <[email protected]> | |
--- | |
pkg/legacygwjsonpb/marshal.go | 292 ++++++++++++++++++++++++++++++++++ | |
scripts/test.sh | 4 +- | |
server/embed/serve.go | 8 +- |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
- openat2 (fs/open.c) - https://elixir.bootlin.com/linux/v6.0.19/source/fs/open.c#L1345
- do_sys_openat2 - https://elixir.bootlin.com/linux/v6.0.19/source/fs/open.c#L1294
- do_filp_open - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3710
- path_openat - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3671
- open_last_lookups - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3429
- lookup_open - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3318
- inode isn't cached
- dir_inode->i_op->lookup [ext4_lookup] - https://elixir.bootlin.com/linux/v6.0.19/source/fs/ext4/namei.c#L1811
- lookup_open - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3318
- open_last_lookups - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3429
- path_openat - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3671
- do_filp_open - https://elixir.bootlin.com/linux/v6.0.19/source/fs/namei.c#L3710
- do_sys_openat2 - https://elixir.bootlin.com/linux/v6.0.19/source/fs/open.c#L1294
- inode = iget_locked(sb, ino); // allocate inode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
target_snapshot_id=$1 | |
parent_id="" | |
snapshot_ids="" | |
# ensure that it is valid input | |
ctr -n k8s.io snapshot usage $target_snapshot_id > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go run main.go --owner etcd-io --repo etcd run list --workflow-id 36262010 --created 2022-12-01..2023-01-30 --jobs "test / test" --jobs "test" --event push --status success | |
ID NAME EVENT HEAD(MESSAGE) STATUS JOB(test / test) JOB(test) CREATED | |
4044118009 Linearizability push Merge pull request #15191 from serathius/linearizability-failpoints-timeout success 13m42s N/A Mon Jan 30 13:05:34 UTC 2023 | |
4041995481 Linearizability push tools: fix the CSV format error and add build target 'tools' in Makefile success 14m26s N/A Mon Jan 30 08:35:48 UTC 2023 | |
4041504776 Linearizability push fix(client):getToken automatically when the token has expired success 13m32s N/A Mon Jan 30 07:20:05 UTC 2023 | |
4040377539 Linearizability push CHANGELOG: add item about improvement for concurrent read success 14m58 |
NewerOlder