From afbb52b4bfa1fd1cb2c91ce6b7bd4d5e38a59bf5 Mon Sep 17 00:00:00 2001 From: Alex Jones Date: Thu, 18 May 2023 16:50:26 +0100 Subject: [PATCH] updated README.md Signed-off-by: Alex Jones --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 47b45d7..86a18b4 100644 --- a/README.md +++ b/README.md @@ -406,6 +406,24 @@ In these scenarios K8sGPT supports AWS S3 Integration. Remote caching + _As a prerequisite `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` are required as environmental variables._ + +_Adding a remote cache_ +Note: this will create the bucket if it does not exist +``` +k8sgpt cache add --region --bucket +``` + +_Listing cache items +``` +k8sgpt cache list +``` + +_Removing the remote cache_ +Note: this will not delete the bucket +``` +k8sgpt cache remove --bucket +```