Skip to content

Commit

Permalink
Merge pull request #63 from HewlettPackard/release-v0.0.9
Browse files Browse the repository at this point in the history
Release v0.0.9
  • Loading branch information
roehrich-hpe committed Feb 21, 2024
2 parents ef55c3f + d304211 commit 129127b
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 43 deletions.
34 changes: 21 additions & 13 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
name: Docker build and push

on:
push:
branches:
- '*'
tags:
- 'v*'
pull_request:
branches:
- 'master'
- 'releases/v*'
on: [push]

env:
# TEST_TARGET: Name of the testing target in the Dockerfile
Expand All @@ -19,9 +10,6 @@ env:
# The docker test current fails on this project
DO_TEST: false

# DO_PUSH - true to push to the HPE_DEPLOY_REPO, false to not push
DO_PUSH: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -103,3 +91,23 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}

create_release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Repair tag
run: git fetch -f origin ${{ github.ref }}:${{ github.ref }}
- name: Verify that the tag is annotated
run: if test x$(git for-each-ref ${{ github.ref }} | awk '{print $2}') = xtag; then /bin/true; else echo "\"${{ github.ref }}\" does not look like an annotated tag!"; /bin/false; fi
- name: Release
uses: softprops/action-gh-release@v1
with:
#prerelease: true
generate_release_notes: true

28 changes: 0 additions & 28 deletions .github/workflows/verify_tag.yaml

This file was deleted.

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.8"
tag: "0.0.9"
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.8
newTag: 0.0.9
4 changes: 4 additions & 0 deletions deploy/kubernetes/base/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ spec:
app.kubernetes.io/part-of: lustre-csi-driver
app.kubernetes.io/name: lustre-csi-node
app.kubernetes.io/component: plugin
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: "25%"
template:
metadata:
labels:
Expand Down

0 comments on commit 129127b

Please sign in to comment.