Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 849 Bytes

how-to-get-key-by-prefix.md

File metadata and controls

40 lines (28 loc) · 849 Bytes
title description weight
How to get keys by prefix
Guide to extracting etcd keys by their prefix
300

Pre-requisites

Get keys by prefix

$ etcdctl --endpoints=$ENDPOINTS get PREFIX --prefix

Global Options

--endpoints=[127.0.0.1:2379], gRPC endpoints

Options

--prefix, get a range of keys with matching prefix

Example

03_etcdctl_get_by_prefix_2016050501

etcdctl --endpoints=$ENDPOINTS put web1 value1
etcdctl --endpoints=$ENDPOINTS put web2 value2
etcdctl --endpoints=$ENDPOINTS put web3 value3

etcdctl --endpoints=$ENDPOINTS get web --prefix