Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into release-v3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mpereira committed Jan 22, 2020
2 parents 4e587f9 + 1c44493 commit cf7a946
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to

## [Unreleased]

- Fix issue that prevented setting a custom volume storage class.
([#42](https://github.com/mesosphere/kudo-cassandra-operator/pull/42))

## [3.11.5-0.1.1] - 2019-12-12

### Added
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ kubectl kudo install cassandra

## Documentation

- [Installing](./docs/installing.md)
- [Upgrading](./docs/upgrading.md)
- [Managing](./docs/managing.md)
- [Monitoring](./docs/monitoring.md)
- [Parameters reference](./docs/parameters.md)
- [Installing](/docs/installing.md)
- [Accessing](/docs/accessing.md)
- [Managing](/docs/managing.md)
- [Upgrading](/docs/upgrading.md)
- [Monitoring](/docs/monitoring.md)
- [Parameters reference](/docs/parameters.md)

## Version Chart

Expand Down
2 changes: 1 addition & 1 deletion operator/templates/stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ spec:
resources:
requests:
storage: "{{ .Params.NODE_DISK_SIZE_GIB }}Gi"
{{ if eq .Params.NODE_STORAGE_CLASS "true" }}
{{ if .Params.NODE_STORAGE_CLASS }}
storageClassName: {{ .Params.NODE_STORAGE_CLASS }}
{{ end }}
2 changes: 1 addition & 1 deletion templates/operator/templates/stateful-set.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ spec:
resources:
requests:
storage: "{{ .Params.NODE_DISK_SIZE_GIB }}Gi"
{{ if eq .Params.NODE_STORAGE_CLASS "true" }}
{{ if .Params.NODE_STORAGE_CLASS }}
storageClassName: {{ .Params.NODE_STORAGE_CLASS }}
{{ end }}

0 comments on commit cf7a946

Please sign in to comment.