Skip to content

Commit c0d6e15

Browse files
Update README.md and NOTES.txt
- README: Added setting default storageclass to install section before install command to help prevent issues at first install and subsequent upgrades. - NOTES: Changed root password update command to use local chart instead of non-existent repo. Once our official `graylog/graylog` repo is created we should change it back though. Signed-off-by: William Trelawny <22324745+williamtrelawny@users.noreply.github.com>
1 parent 78a0bcb commit c0d6e15

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,17 @@ git clone git@github.com:Graylog2/graylog-helm.git
3333
cd graylog-helm
3434
```
3535

36+
### Set default StorageClass
37+
***If your cluster already has a default `storageclass` you can skip this step.***
38+
39+
If not, you're unsure, or you don't want to affect cluster-wide settings, set the default `storageclass` for this Chart at runtime by passing `--set global.defaultStorageClass="my-sc"` to your `helm install` command. Or by adding the following lines to `values-custom.yaml`:
40+
```
41+
global:
42+
defaultStorageClass: "my-sc"
43+
```
44+
45+
Just be sure to pass `-f values-custom.yaml` to your `helm install` command below!
46+
3647
### Set Root Graylog Password
3748
```sh
3849
read -sp "Enter your new password and press return: " pass

graylog/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Welcome to Graylog!
4848

4949
· WARNING: You are still using the default password {{ include "graylog.rootPassword" . | quote }}. This MUST be changed IMMEDIATELY using the following command:
5050

51-
read -sp "Enter your new password and press return: " i && helm upgrade {{ .Release.Name }} graylog/graylog --namespace {{ .Release.Namespace }} --reuse-values --set "graylog.config.rootPassword=$i"
51+
read -sp "Enter your new password and press return: " i && helm upgrade {{ .Release.Name }} ./graylog --namespace {{ .Release.Namespace }} --reuse-values --set "graylog.config.rootPassword=$i"
5252
{{- end }}
5353

5454
· Use the following command to print this status page again:

0 commit comments

Comments
 (0)