-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add volumeClaimTemplates to raft storage api #5
base: master
Are you sure you want to change the base?
Conversation
deploy/raft-storage-controller.yaml
Outdated
@@ -181,7 +168,7 @@ metadata: | |||
subjects: | |||
- kind: ServiceAccount | |||
name: raft-storage-controller | |||
namespace: kube-system | |||
namespace: default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is a cluster scoped controller it should be deployed in the kube-system
namespace as is convention for all controllers
default: 1 | ||
volumeClaimTemplates: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we just convert this to YAML just so it's clear and so we're sure we can use it in the Helm chart as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will figure that out. It looks like it is working in helm chart as well :)
1b211d8
to
de9930c
Compare
@kuujo |
0696d7b
to
ad4c6a7
Compare
ad4c6a7
to
f6203b2
Compare
replicas: 1 | ||
partitionsPerCluster: 3 | ||
volumeClaimTemplates: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we keep this here as an example?
partitionsPerCluster: | ||
type: integer | ||
min: 1 | ||
max: 1024 | ||
minimum: 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be updated in helm charts as well.
More testing will be needed.