Skip to content

Commit

Permalink
Merge pull request #70 from HewlettPackard/release-v0.1.0
Browse files Browse the repository at this point in the history
Release v0.1.0
  • Loading branch information
ajfloeder authored Apr 3, 2024
2 parents f4f8566 + da4ce5b commit 252a77c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ frameworks to mount and unmount Lustre filesystems to/from containers in their p

## Kubernetes Compatibility Matrix

| Lustre CSI Driver / Kubernetes Version | v1.12 | v1.13 | v1.14 | v1.15 | v1.16 | v1.17 | v1.18+ |
|----------------------------------------|-------|-------|-------|-------|-------|-------|--------|
| v0.0.1 | no | yes | yes | yes | yes | yes | yes |

| Lustre CSI Driver / Kubernetes Version | v1.13-1.18 | v1.25 | v1.27 |
|----------------------------------------|------------|-------|-------|
| v0.0.1 | yes | yes | yes |
| v0.0.10 | yes | yes | yes |

## Deployment

Expand Down
2 changes: 1 addition & 1 deletion charts/lustre-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

deployment:
image: "ghcr.io/hewlettpackard/lustre-csi-driver"
tag: "0.0.10"
tag: "0.1.0"
3 changes: 2 additions & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ fi

if [[ $CMD == 'undeploy' ]]; then
# Do not touch the namespace resource when deleting this service.
$KUSTOMIZE build "$OVERLAY_DIR" | yq eval 'select(.kind != "Namespace")' | kubectl delete --ignore-not-found -f -
# Wishing for yq(1)...
$KUSTOMIZE build "$OVERLAY_DIR" | python3 -c 'import yaml, sys; all_docs = yaml.safe_load_all(sys.stdin); less_docs=[doc for doc in all_docs if doc["kind"] != "Namespace"]; print(yaml.dump_all(less_docs))' | kubectl delete --ignore-not-found -f -
fi

exit 0
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ resources:
images:
- name: controller
newName: ghcr.io/hewlettpackard/lustre-csi-driver
newTag: 0.0.10
newTag: 0.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ spec:
- key: "cray.nnf.node"
operator: "Equal"
value: "true"
effect: "NoSchedule"
effect: "NoSchedule"
- key: "cray.nnf.node.drain"
operator: "Exists"
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ spec:
- key: "cray.nnf.node"
operator: "Equal"
value: "true"
effect: "NoSchedule"
effect: "NoSchedule"
- key: "cray.nnf.node.drain"
operator: "Exists"

0 comments on commit 252a77c

Please sign in to comment.