Skip to content

Commit

Permalink
Merge pull request #5 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 1.2.0
  • Loading branch information
andyone authored Sep 16, 2023
2 parents 1dd0cae + 1d0c98a commit d7d0747
Show file tree
Hide file tree
Showing 50 changed files with 1,094 additions and 299 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
Expand All @@ -56,10 +56,10 @@ jobs:

steps:
- name: Code checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -78,7 +78,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check spelling
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand Down
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RDS supports the next versions of Redis and Sentinel:

* `6.0.x`
* `6.2.x`
* `7.0.x` **ʀᴇᴄᴏᴍᴍᴇɴᴅᴇᴅ**
* `7.0.x` **ʀᴇᴄᴏᴍᴍᴇɴᴅᴇᴅ**
* `7.2.x`

RDS packages do not have Redis as a dependency, so you can install it from any source (_package, sources, prebuilt binaries…_).
Expand All @@ -45,7 +45,7 @@ RDS packages do not have Redis as a dependency, so you can install it from any s
* `redis`
* `redis60`
* `redis62`
* `redis70` **ʀᴇᴄᴏᴍᴍᴇɴᴅᴇᴅ**
* `redis70` **ʀᴇᴄᴏᴍᴍᴇɴᴅᴇᴅ**
* `redis72`

</p></details>
Expand All @@ -55,7 +55,7 @@ RDS packages do not have Redis as a dependency, so you can install it from any s
```
Usage: rds {options} {command}
Instances commands
Basic commands
create Create new Redis instance
destroy id Destroy (delete) Redis instance
Expand All @@ -68,23 +68,30 @@ Instances commands
cli id:db command Run CLI connected to Redis instance
cpu id period Calculate instance CPU usage
memory id Show instance memory usage
info id section Show system info about Redis instance
info id section Show system info about Redis instance
stats-command id Show statistics based on the command type
stats-latency id Show latency statistics based on the command type
stats-error id Show error statistics
clients id filter Show list of connected clients
track id interval Show interactive info about Redis instance
conf id property Show configuration of Redis instance
list filter Show list of all Redis instances
conf id filter… Show configuration of Redis instance
list filter Show list of all Redis instances
stats Show overall statistics
top field num Show instances top
top-diff file field num Compare current and dumped top data
top-dump file Dump top data to file
slowlog-get id num Show last entries from slow log
slowlog-reset id Clear slow log
check Check for dead instances
tag-add id tag Add tag to instance
tag-remove id tag Remove tag from instance
check Check for dead instances
Backup commands
backup-create id Create snapshot of RDB file
backup-restore id Restore instance data from snapshot
backup-clean id Remove all backup snapshots
backup-list id List backup snapshots
Superuser commands
Expand Down Expand Up @@ -121,6 +128,7 @@ Common commands
help command Show command usage info
settings section… Show settings from global configuration file
gen-token Generate authentication token for sync daemon
validate-templates Validate Redis and Sentinel templates
Options
Expand All @@ -131,6 +139,7 @@ Options
--format, -f format Output format (text/json/xml)
--yes, -y Automatically answer yes for all questions
--simple, -S Simplify output (useful for copy-paste)
--raw, -R Force raw output (useful for scripts)
--no-color, -nc Disable colors in output
--help, -h Show this help message
--version, -v Show information about version
Expand Down
Loading

0 comments on commit d7d0747

Please sign in to comment.