Skip to content

Commit 23ba77a

Browse files
fix: don't build bundle in the pipeline to avoid issues with version being 'latest' (#66)
Signed-off-by: Harikrishnan Balagopal <[email protected]>
1 parent 56e924d commit 23ba77a

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

.github/workflows/build.yml

-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
- name: build container image
2626
run: |
2727
VERSION='${{ steps.image_tag.outputs.tag }}' make docker-build
28-
rm -rf bundle/
29-
VERSION='${{ steps.image_tag.outputs.tag }}' make bundle
3028
VERSION='${{ steps.image_tag.outputs.tag }}' make bundle-build
3129
- name: push images to quay
3230
run: |

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ jobs:
107107
- name: build
108108
run: |
109109
VERSION=${{ github.event.inputs.tag }} make docker-build
110-
rm -rf bundle/
111-
VERSION=${{ github.event.inputs.tag }} make bundle
112110
VERSION=${{ github.event.inputs.tag }} make bundle-build
113111
- run: echo "${{ secrets.QUAY_BOT_PASSWORD }}" | docker login --username "${{ secrets.QUAY_BOT_USERNAME }}" --password-stdin quay.io
114112
- name: push the image to quay

config/default/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resources:
2121
# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
2222
#- ../prometheus
2323

24-
patchesStrategicMerge:
24+
patches:
2525
# Protect the /metrics endpoint by putting it behind auth.
2626
# If you want your controller-manager to expose the /metrics
2727
# endpoint w/o any authn/z, please comment the following line.

config/manifests/bases/move2kube-operator.clusterserviceversion.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
alm-examples: '[]'
66
capabilities: Seamless Upgrades
77
categories: Modernization & Migration
8-
containerImage: quay.io/konveyor/move2kube-operator:v0.3.8
8+
containerImage: quay.io/konveyor/move2kube-operator:v0.3.9
99
description: Konveyor Move2Kube is an open source tool that helps migrate your
1010
app to run on Kubernetes/Openshift.
1111
repository: https://github.com/konveyor/move2kube-operator

0 commit comments

Comments
 (0)