Skip to content

Commit

Permalink
Merge pull request #66 from HewlettPackard/release-v0.0.10
Browse files Browse the repository at this point in the history
Release v0.0.10
  • Loading branch information
ajfloeder committed Feb 27, 2024
2 parents 129127b + a061bba commit f4f8566
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
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.9"
tag: "0.0.10"
5 changes: 3 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# limitations under the License.

set -e
set -o pipefail

# Deploy/undeploy controller to the K8s cluster specified in ~/.kube/config.

Expand All @@ -26,12 +27,12 @@ KUSTOMIZE=$2
OVERLAY_DIR=$3

if [[ $CMD == 'deploy' ]]; then
$KUSTOMIZE build $OVERLAY_DIR | kubectl apply -f -
$KUSTOMIZE build "$OVERLAY_DIR" | kubectl apply -f -
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 -
$KUSTOMIZE build "$OVERLAY_DIR" | yq eval 'select(.kind != "Namespace")' | 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.9
newTag: 0.0.10

0 comments on commit f4f8566

Please sign in to comment.