Skip to content

Commit 7897655

Browse files
Merge pull request #512 from iamniting/few
Add few tweaks
2 parents 5ba12c4 + 87b3943 commit 7897655

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/docker-build.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
fetch-depth: 0
2525

2626
- name: Build operator docker image
27-
run: make docker-build
27+
run: |
28+
make docker-build
29+
msg='Uncommitted generated changes. run `make docker-build` and commit results.'
30+
git diff --exit-code . || (echo -e '\e[31m'"$msg"; exit 1)
2831
2932
bundle-build:
3033
runs-on: ubuntu-latest

bundle/odf-operator/manifests/odf-operator.clusterserviceversion.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ metadata:
3535
categories: Storage
3636
console.openshift.io/plugins: '["odf-console"]'
3737
containerImage: quay.io/ocs-dev/odf-operator:latest
38-
createdAt: "2024-11-14T03:00:40Z"
38+
createdAt: "2024-11-21T13:20:34Z"
3939
description: OpenShift Data Foundation provides a common control plane for storage
4040
solutions on OpenShift Container Platform.
4141
features.operators.openshift.io/token-auth-aws: "true"
@@ -405,6 +405,7 @@ spec:
405405
- configMapRef:
406406
name: odf-operator-manager-config
407407
image: quay.io/ocs-dev/odf-operator:latest
408+
imagePullPolicy: Always
408409
livenessProbe:
409410
httpGet:
410411
path: /healthz

config/manager/manager.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ spec:
4343
- configMapRef:
4444
name: manager-config
4545
image: controller:latest
46+
imagePullPolicy: Always
4647
name: manager
4748
securityContext:
4849
allowPrivilegeEscalation: false

vendor/modules.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# github.com/IBM/ibm-storage-odf-operator v1.6.0
2-
## explicit; go 1.20
2+
## explicit; go 1.22.0
33
github.com/IBM/ibm-storage-odf-operator/api/v1alpha1
44
# github.com/beorn7/perks v1.0.1
55
## explicit; go 1.11

0 commit comments

Comments
 (0)