Skip to content

Commit f58386b

Browse files
committed
Release v0.4.0
This patch updates chart version and fixes prepare-release.sh Signed-off-by: Ivan Kolodiazhny <[email protected]>
1 parent a29ae79 commit f58386b

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

deployment/network-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: network-operator
3-
version: 0.3.0
3+
version: 0.4.0
44
kubeVersion: '>= 1.17.0'
5-
appVersion: v0.3.0
5+
appVersion: v0.4.0
66
description: Nvidia Mellanox network operator
77
type: application
88
keywords:

deployment/network-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ the file: `values.yaml`
224224
Specifies components to deploy in order to facilitate a secondary network in Kubernetes. It consists of the following optionally deployed components:
225225
- [Multus-CNI](https://github.com/k8snetworkplumbingwg/multus-cni): Delegate CNI plugin to support secondary networks in Kubernetes
226226
- CNI plugins: Currently only [containernetworking-plugins](https://github.com/containernetworking/plugins) is supported
227-
- IPAM CNI: Currently only [Whereabout IPAM CNI](httpso://github.com/k8snetworkplumbingwg/whereabouts) is supported
227+
- IPAM CNI: Currently only [Whereabout IPAM CNI](https://github.com/k8snetworkplumbingwg/whereabouts) is supported
228228

229229
##### CNI Plugin Secondary Network
230230

scripts/releases/prepare-release.sh

100644100755
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ else
9696
exit 1
9797
fi
9898

99-
## Patch deployment files
100-
sed -e s"/image:.*/image: mellanox\/network-operator:$release/" \
101-
-i deploy/operator.yaml
102-
10399
# Patch Helm chart
104100
chart=`echo $release | cut -c 2-`
105101
sed -e s"/appVersion:.*/appVersion: $release/" \
@@ -113,9 +109,8 @@ git add .
113109
git commit -S -m "Release $release"
114110

115111
if [ -n "$push_remote" ]; then
116-
echo "Pushing gh-pages to $push_remote"
117-
git push "$push_remote" gh-pages
118-
112+
echo "Pushing to $push_remote"
113+
git push "$push_remote"
119114
fi
120115

121116
#

scripts/releases/update-gh-pages.sh

100644100755
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ if [ $# -ne 1 ]; then
5050
exit 1
5151
fi
5252

53-
exit 2
5453
chart="$1"
5554
release=${chart::-4}
5655

0 commit comments

Comments
 (0)