File tree Expand file tree Collapse file tree 3 files changed +19
-12
lines changed
deployment/network-operator Expand file tree Collapse file tree 3 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22name : network-operator
3- version : 0.6.0
3+ version : 0.6.1
44kubeVersion : ' >= 1.17.0'
5- appVersion : v0.6.0
5+ appVersion : v0.6.1
66description : Nvidia network operator
77type : application
88keywords :
Original file line number Diff line number Diff line change @@ -105,13 +105,13 @@ sed -e s"/pullPolicy:.*/pullPolicy: IfNotPresent/" \
105105 -i deployment/network-operator/values.yaml
106106
107107# Commit changes
108- git add .
109- git commit -S -m " Release $release "
108+ # git add .
109+ # git commit -S -m "Release $release"
110110
111- if [ -n " $push_remote " ]; then
112- echo " Pushing to $push_remote "
113- git push " $push_remote "
114- fi
111+ # if [ -n "$push_remote" ]; then
112+ # echo "Pushing to $push_remote"
113+ # git push "$push_remote"
114+ # fi
115115
116116#
117117# Create release assets to be uploaded
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ while getopts "hap:" opt; do
3838 p) push_remote=" $OPTARG "
3939 ;;
4040 * ) usage
41- exit 1
4241 ;;
4342 esac
4443done
4746if [ $# -ne 1 ]; then
4847 echo " ERROR: extra positional arguments: $@ "
4948 usage
50- exit 1
49+ # exit 1
5150fi
51+ echo $push_remote
5252
53- chart=" $1 "
53+ chart=" $3 "
5454release=${chart::- 4}
5555
5656build_dir=" /tmp/network-operator-build"
@@ -60,7 +60,14 @@ src_dir=$(pwd)
6060git worktree add $build_dir origin/gh-pages
6161
6262# Drop worktree on exit
63- trap " echo 'Removing Git worktree $build_dir '; git worktree remove '$build_dir '" EXIT
63+ # trap "echo 'Removing Git worktree $build_dir'; git worktree remove '$build_dir'" EXIT
64+
65+
66+ echo " -====="
67+ echo $chart
68+ echo $build_dir
69+ echo $push_remote
70+ echo " ++++++++"
6471
6572# Update Helm package index
6673mv $chart $build_dir /release
You can’t perform that action at this time.
0 commit comments