Skip to content

Commit 0c200aa

Browse files
committed
Push the new images
Triggers the push for the split images. Signed-off-by: Liran Rotenberg <[email protected]>
1 parent cd723fc commit 0c200aa

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/build-push-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
run: |
3939
cd ${GITHUB_WORKSPACE}
4040
./hack/release-images.sh
41-
make push-populator-image
41+
make push-ovirt-populator-image

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ Another option to override the default values can use `--action_env` as in the e
4949
| UI_PLUGIN_IMAGE | quay.io/kubev2v/forklift-console-plugin:latest | The forklift OKD/OpenShift UI plugin image. |
5050
| VALIDATION_IMAGE | quay.io/kubev2v/forklift-validation:latest | The forklift validation image. |
5151
| VIRT_V2V_IMAGE | *see below* | The forklift virt v2v image. See note below. |
52-
| POPULATOR_CONTROLLER_IMAGE | quay.io/kubev2v/populator-controller:latest | The populator controller image. |
52+
| POPULATOR_CONTROLLER_IMAGE | quay.io/kubev2v/populator-controller:latest | The forklift volume-populator controller image. |
53+
| OVIRT_POPULATOR_IMAGE | quay.io/kubev2v/ovirt-populator:latest | The oVirt populator image. |
5354

5455
Value for `VIRT_V2V_IMAGE` can be either a single image location, or it can be two different images separated by `|`. The second form can be used to specify different image for cold migration and warm migration. The syntax in this case is `<cold_image>|<warm_image>`. Currently the default value is: `quay.io/kubev2v/forklift-virt-v2v:latest|quay.io/kubev2v/forklift-virt-v2v-warm:latest`.
5556

hack/release-images.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ VALIDATION_IMAGE=${REGISTRY}/${REGISTRY_ACCOUNT}/forklift-validation:${REGISTRY_
1717
VIRT_V2V_IMAGE_COLD=${REGISTRY}/${REGISTRY_ACCOUNT}/forklift-virt-v2v:${REGISTRY_TAG}
1818
VIRT_V2V_IMAGE_WARM=${REGISTRY}/${REGISTRY_ACCOUNT}/forklift-virt-v2v-warm:${REGISTRY_TAG}
1919
API_IMAGE=${REGISTRY}/${REGISTRY_ACCOUNT}/forklift-api:${REGISTRY_TAG}
20+
POPULATOR_CONTROLLER_IMAGE=${REGISTRY}/${REGISTRY_ACCOUNT}/populator-controller:${REGISTRY_TAG}
2021

2122
bazel run push-forklift-api
2223
bazel run push-forklift-virt-v2v
2324
bazel run push-forklift-virt-v2v-warm
25+
bazel run push-populator-controller-image
2426
bazel run push-forklift-controller
2527
bazel run push-forklift-validation
2628
bazel run push-forklift-operator
@@ -33,7 +35,8 @@ bazel run push-forklift-operator-bundle \
3335
--action_env VALIDATION_IMAGE=${VALIDATION_IMAGE} \
3436
--action_env VIRT_V2V_IMAGE="${VIRT_V2V_IMAGE_COLD}|${VIRT_V2V_IMAGE_WARM}" \
3537
--action_env CONTROLLER_IMAGE=${CONTROLLER_IMAGE} \
36-
--action_env API_IMAGE=${API_IMAGE}
38+
--action_env API_IMAGE=${API_IMAGE} \
39+
--action_env POPULATOR_CONTROLLER_IMAGE=${POPULATOR_CONTROLLER_IMAGE}
3740
bazel run push-forklift-operator-index \
3841
--action_env REGISTRY=${REGISTRY} \
3942
--action_env REGISTRY_TAG=${REGISTRY_TAG} \

0 commit comments

Comments
 (0)