-
Notifications
You must be signed in to change notification settings - Fork 212
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
WIP: Remove snapshot class creation in deploy script #104
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,10 +107,14 @@ for component in CSI_PROVISIONER CSI_ATTACHER CSI_SNAPSHOTTER CSI_RESIZER; do | |
run kubectl apply -f "${current}" | ||
done | ||
|
||
# deploy hostpath plugin and registrar sidecar | ||
# deploy hostpath plugin and CSI sidecars | ||
echo "deploying hostpath components" | ||
for i in $(ls ${BASE_DIR}/hostpath/*.yaml | sort); do | ||
echo " $i" | ||
if [[ $i == *"snapshotter"* ]] ; then | ||
continue | ||
fi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do I understand this correctly? The following files are all going to be ignored during deployment?
That doesn't look right. It breaks the entire example in https://github.com/kubernetes-csi/csi-driver-host-path#snapshot-support There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, still a WIP - the csi-snapshotter uses I'll remove the WIP tag when this is ready for review |
||
|
||
modified="$(cat "$i" | while IFS= read -r line; do | ||
nocomments="$(echo "$line" | sed -e 's/ *#.*$//')" | ||
if echo "$nocomments" | grep -q '^[[:space:]]*image:[[:space:]]*'; then | ||
|
@@ -151,7 +155,7 @@ done | |
# for: the expectation is that we run attacher, provisioner, | ||
# snapshotter, resizer, socat and hostpath plugin in the default namespace. | ||
cnt=0 | ||
while [ $(kubectl get pods 2>/dev/null | grep '^csi-hostpath.* Running ' | wc -l) -lt 5 ] || ! kubectl describe volumesnapshotclasses.snapshot.storage.k8s.io 2>/dev/null >/dev/null; do | ||
while [ $(kubectl get pods 2>/dev/null | grep '^csi-hostpath.* Running ' | wc -l) -lt 4 ]; do | ||
if [ $cnt -gt 30 ]; then | ||
echo "Running pods:" | ||
kubectl describe pods | ||
|
@@ -163,7 +167,3 @@ while [ $(kubectl get pods 2>/dev/null | grep '^csi-hostpath.* Running ' | wc -l | |
cnt=$(($cnt + 1)) | ||
sleep 10 | ||
done | ||
|
||
# deploy snapshotclass | ||
echo "deploying snapshotclass" | ||
kubectl apply -f ${BASE_DIR}/snapshotter/csi-hostpath-snapshotclass.yaml |
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.
Don't downgrade the version, please.
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.
Got it, I didn't see a published v1.2.0 here:
https://quay.io/repository/k8scsi/hostpathplugin?tag=v1.2.0&tab=tags
so I'm just testing with this version.