Skip to content

Commit 9fa6531

Browse files
authored
Merge pull request #157 from e0ne/prepare-v.0.4.0
Release v0.4.0
2 parents eb50b92 + f58386b commit 9fa6531

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ optionally deploy Node Feature Discovery in the cluster. This is enabled via `nf
3131
### SR-IOV Network Operator
3232
Nvidia Network Operator can operate in unison with SR-IOV Network Operator
3333
to enable SR-IOV workloads in a Kubernetes cluster. We provide a helm chart to be used to optionally
34-
deploy [SR-IOV Network Operator](https://github.com/openshift/sriov-network-operator) in the cluster.
34+
deploy [SR-IOV Network Operator](https://github.com/k8snetworkplumbingwg/sriov-network-operator) in the cluster.
3535
This is enabled via `sriovNetworkOperator.enabled` chart parameter.
3636

3737
For more information on how to configure SR-IOV in your Kubernetes cluster using SR-IOV Network Operator
@@ -222,9 +222,9 @@ the file: `values.yaml`
222222
| `secondaryNetwork.deploy` | bool | `true` | Deploy Secondary Network |
223223

224224
Specifies components to deploy in order to facilitate a secondary network in Kubernetes. It consists of the following optionally deployed components:
225-
- [Multus-CNI](https://github.com/intel/multus-cni): Delegate CNI plugin to support secondary networks in Kubernetes
225+
- [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](https://github.com/dougbtv/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)