Skip to content

Commit 5d06018

Browse files
authored
update operator and driver version (#42)
* update operator and driver version Signed-off-by: Neeraj Kumar Kashyap <[email protected]> * for ut ignore fakes Signed-off-by: Neeraj Kumar Kashyap <[email protected]> --------- Signed-off-by: Neeraj Kumar Kashyap <[email protected]>
1 parent ba02637 commit 5d06018

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ vet: ## Run go vet against code.
108108
.PHONY: test
109109
test: manifests generate fmt vet envtest ## Run tests.
110110
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)"
111-
go test -coverprofile=coverage.out ./...
111+
## go test -coverprofile=coverage.out ./...
112+
go test -coverprofile=coverage.out $$(go list ./... | grep -v '/e2e' | grep -v '/fake' | grep -v 'api/v1alpha1')
112113

113114
coverage: test
114115
cat coverage.out | grep -v /controllers/fake/ > cover.out; go tool cover -html=cover.out

config/manager/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: icr.io/ibm/ibm-object-csi-driver-operator
8-
newTag: v0.1.5
8+
newTag: v0.1.8
99
commonLabels:
10-
app.kubernetes.io/part-of: ibm-object-csi-driver-operator
1110
app.kubernetes.io/managed-by: kustomize
11+
app.kubernetes.io/part-of: ibm-object-csi-driver-operator

config/samples/csi_v1alpha1_ibmobjectcsi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
# and csi-provisioner, csi-attacher, csi-snapshotter and livenessprobe sidecars.
1313
controller:
1414
repository: icr.io/ibm/ibm-object-csi-driver
15-
tag: "v0.1.5"
15+
tag: "v0.1.8"
1616
imagePullPolicy: IfNotPresent
1717
resources:
1818
limits:
@@ -35,7 +35,7 @@ spec:
3535
# and csi-node-driver-registrar and livenessprobe sidecars.
3636
node:
3737
repository: icr.io/ibm/ibm-object-csi-driver
38-
tag: "v0.1.5"
38+
tag: "v0.1.8"
3939
imagePullPolicy: Always
4040
affinity:
4141
nodeAffinity:

0 commit comments

Comments
 (0)