-
Notifications
You must be signed in to change notification settings - Fork 166
Add support for multi-writer PD #415
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
Merged
k8s-ci-robot
merged 13 commits into
kubernetes-sigs:master
from
nikhilkathare:shared-pd
Aug 12, 2020
Merged
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d32b658
Adds support for multi-writer PD
119875e
Adds multi-writer validation, reduces code duplication, add E2E test
99c4619
Fixes gofmt
2e6ca14
Add pending test for multi-writer attach. Updated for minimum multi-w…
6470835
disambiguates apiVersion and fix nil check
ed82c10
Merge pull request #1 from kubernetes-sigs/master
nikhilkathare 490f1bf
Merge remote-tracking branch 'origin/master' into shared-pd
nikhilkathare bfa815b
Fix for compilation issues after merging
nikhilkathare 4473873
Merge pull request #2 from kubernetes-sigs/master
nikhilkathare cb15d04
Merge pull request #3 from nikhilkathare/master
nikhilkathare 6af5e68
shared-pd addressing comments and fixing e2e build error
nikhilkathare abeb772
Merge branch 'master' into shared-pd
nikhilkathare 9e7eb61
go fmt fixes
nikhilkathare File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| kind: PersistentVolumeClaim | ||
| apiVersion: v1 | ||
| metadata: | ||
| name: podpvc | ||
| spec: | ||
| accessModes: | ||
| - ReadWriteMany | ||
| volumeMode: Block | ||
| storageClassName: csi-gce-pd | ||
| resources: | ||
| requests: | ||
| storage: 200Gi | ||
|
|
||
| --- | ||
|
|
||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: web-server | ||
| spec: | ||
| selector: | ||
| matchLabels: | ||
| app: web | ||
| replicas: 2 | ||
| template: | ||
| metadata: | ||
| labels: | ||
| app: web | ||
| spec: | ||
| affinity: | ||
| podAntiAffinity: | ||
| requiredDuringSchedulingIgnoredDuringExecution: | ||
| - labelSelector: | ||
| matchExpressions: | ||
| - key: app | ||
| operator: In | ||
| values: | ||
| - web | ||
| topologyKey: "kubernetes.io/hostname" | ||
| containers: | ||
| - name: web-server | ||
| image: nginx | ||
| volumeDevices: | ||
| - name: mypvc | ||
| devicePath: /dev/mypvc | ||
| volumes: | ||
| - name: mypvc | ||
| persistentVolumeClaim: | ||
| claimName: podpvc | ||
| readOnly: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
how about the other way around
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.
The other way around would be when the existing disk is enabled for multi-writer but the user didn't ask for that capability. I assume here that the user would be okay with that.
It's actually quite challenging to check the opposite because the user might not have Alpha API access. I suppose we could first try alpha and if that fails fall back to v1.