Граф коммитов

372 Коммитов

Автор SHA1 Сообщение Дата
Nick Canzoneri 9654075ad0
Create an actions file to run CI 2019-11-21 22:13:20 -05:00
Guillaume Herail f314a0d610 Add client cert authentication
Adds 3 new configuration items:
- cert
- key
- cacert
2019-11-21 16:43:57 +01:00
Nick Canzoneri adf9d46056
Merge pull request #64 from github/move_to_go_mod
Move to go mod instead of dep
2019-11-19 21:48:54 -05:00
Nick Canzoneri f8fc4b7bb3
Update travis to add go modules env variable 2019-11-19 11:20:14 -05:00
Nick Canzoneri c59b3c5bf0
Run go mod tidy 2019-11-19 11:08:14 -05:00
Nick Canzoneri bf9e13df7f
Run a go mod init 2019-11-12 10:51:37 -05:00
Nick Canzoneri 77e4e6a38e
Merge pull request #63 from github/escape_special_index_names
Escape periods in index names as it interferes with gjson
2019-10-07 10:01:17 -04:00
Nick Canzoneri fe57e38cb6
`strings.ReplaceAll` only availabe in 1.12+, so using old method for compatability 2019-10-06 19:07:13 -04:00
Nick Canzoneri 2d02b69bcb
Escape periods in index names as it interferes with gjson 2019-10-06 19:00:39 -04:00
Nick Canzoneri 7d2e7ad1c2
Merge pull request #60 from mbertschler/patch-1
Fix "aliases list"
2019-06-05 11:23:05 -04:00
Martin Bertschler ba7f0b3ba4
fix "aliases list"
currently fails with:
```
$ vulcanizer aliases list 
panic: runtime error: index out of range

goroutine 1 [running]:
main.glob..func1(0xd105a0, 0xd39e20, 0x0, 0x0)
	.../go/src/github.com/github/vulcanizer/cmd/vulcanizer/aliases.go:103 +0x46f
```
2019-06-05 14:02:57 +02:00
Nick Canzoneri cd73d06e63
Merge pull request #59 from github/update_integration_tests_for_v7
Update integration tests for v7
2019-06-04 10:11:10 -04:00
Nick Canzoneri 7a603e1b48
update to latest 6.x release 2019-05-24 14:58:49 -04:00
Nick Canzoneri 35ed26d3ef
Remove debug print 2019-05-24 14:50:57 -04:00
Nick Canzoneri 1a96650cb3
Refactor integration test to add v7 2019-05-24 14:34:02 -04:00
Nick Canzoneri ac86d41fe5
Merge pull request #58 from github/update_docs
Update roadmap and readme to display new features
2019-05-23 15:01:19 -04:00
Nick Canzoneri 84bf53972a
Update roadmap and readme to display new features 2019-05-23 14:52:22 -04:00
Nick Canzoneri d9417a621e
Merge pull request #57 from github/get_matching_aliases
Get a subset of aliases
2019-05-23 14:44:54 -04:00
Nick Canzoneri 23eaf30e8a
Add a call to `GetAliases(string)` to the integration tests 2019-05-23 14:19:44 -04:00
Nick Canzoneri 3bb750fc71
Rename `GetAliases` to `GetAllAliases` 2019-05-23 14:05:52 -04:00
Nick Canzoneri 2c833b0a00
Merge pull request #56 from skbly7/master
WIP: #54 Bugfix: Got rid of extra slash in path generation logic
2019-05-17 09:55:56 -04:00
Shivam Khandelwal 8af839f133 #54 Bugfix: Got rid of extra slash in path generation logic 2019-05-17 14:50:28 +05:30
Nick Canzoneri a448e94b16
Merge pull request #52 from ruiwen/feat_config
Configuration handling tweaks
2019-04-25 10:54:18 -04:00
Ruiwen Chua 19b9fc4492 Bind commandline flags to config subsection to allow overriding of config file options from the commandline 2019-04-23 15:31:07 +08:00
Ruiwen Chua 3200571b02 Fix error messages to use proper flag names 2019-04-23 14:43:51 +08:00
Ruiwen Chua fdb0f54060 Update various commands to use the new getClient() convenience function 2019-04-23 11:50:06 +08:00
Ruiwen Chua 2bef65a27e Add support to custom paths in Elasticsearch client 2019-04-23 11:44:56 +08:00
Ruiwen Chua 1f0de3fe54 Add new getClient() wrapper function to ease instantiating a new Client with the given config options 2019-04-23 11:44:20 +08:00
Ruiwen Chua 842ec53acc Add options for custom 'path', 'protocol' (http/https), and 'skipverify' to skip TLS verification 2019-04-23 11:43:33 +08:00
Ruiwen Chua 713a197624 Use Config struct to hold the various configuration options 2019-04-23 11:43:01 +08:00
Nick Canzoneri a0a2c65153
Merge pull request #51 from ruiwen/feat_indices
Indices features
2019-04-19 11:55:12 -04:00
Ruiwen Chua a4424540e0 Update integration_test.go to use GetAllIndices() 2019-04-19 11:35:41 +08:00
Ruiwen Chua 7b1fc92f58 Update commandline client to use new GetIndices() and GetAllIndices() 2019-04-19 01:48:24 +08:00
Ruiwen Chua ed5d6c5c38 Update tests for GetAllIndices() and GetIndices() 2019-04-19 01:47:50 +08:00
Ruiwen Chua 98648f6980 Rename GetIndices() -> GetAllIndices(), and GetSomeIndices() -> GetIndices() 2019-04-19 01:47:26 +08:00
Ruiwen Chua 0dddffaed6 Add tests for OpenIndex() and CloseIndex() 2019-04-18 17:02:09 +08:00
Ruiwen Chua e017f8f765 Add tests for GetSomeIndices() 2019-04-18 17:01:56 +08:00
Ruiwen Chua 2aa0f46311 Fix typo in CloseIndex() 2019-04-18 17:01:42 +08:00
Ruiwen Chua 4130986329 Add subcommands 'open' and 'close' to 'indices'/'index' to support open and closing indices 2019-04-18 16:32:09 +08:00
Ruiwen Chua 483ae580e6 Update indices command to support listing partial list of indices based on a given pattern 2019-04-18 16:31:44 +08:00
Ruiwen Chua 3600cf60bb Add OpenIndex and CloseIndex to open and close indices 2019-04-18 16:31:12 +08:00
Ruiwen Chua 4dd2d17dfa Add function to retrieve partial list of indices 2019-04-18 16:30:45 +08:00
Justin Fudally 9f49bc6c44
Merge pull request #50 from github/add-node-version
Add node version to the `Node` struct, and expose to the CLI `nodes` command
2019-04-05 14:02:14 -05:00
Justin Fudally 04e964746d Add node version to the `Node` struct, and expose to the CLI `nodes` command. 2019-04-05 11:54:17 -05:00
Justin Fudally 7d7ebae77d
Merge pull request #49 from github/update-recovery
Update estimated remaining time format
2019-04-05 11:41:00 -05:00
Justin Fudally 807186d24d Update estimated remaining time format 2019-04-05 11:20:14 -05:00
Justin Fudally a5dfc25f44
Merge pull request #47 from github/add-recovery
Add the ability to query shard recovery details
2019-04-03 08:55:06 -05:00
Justin Fudally 439cadb5c0 Fix merge conflicts 2019-04-02 16:38:29 -05:00
Justin Fudally beb8041c6b Setting default behavior to show only active recoveries. 2019-04-02 16:30:03 -05:00
Justin Fudally 9d1f588c8b Adding missed unit test for TimeRemaining() 2019-04-02 16:29:21 -05:00