From fd73c4fe436e94bc24ddd18bb528ab7aad865a35 Mon Sep 17 00:00:00 2001 From: Samvaran kashyap rallabandi Date: Thu, 15 Jul 2021 03:53:20 -0400 Subject: [PATCH 1/2] Updated upstream cvp-midstream-image endpoint --- .github/workflows/build_and_push_image_on_tag.yml | 2 +- .github/workflows/build_and_push_latest_image.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_push_image_on_tag.yml b/.github/workflows/build_and_push_image_on_tag.yml index ce8d46082..8a3a04af2 100644 --- a/.github/workflows/build_and_push_image_on_tag.yml +++ b/.github/workflows/build_and_push_image_on_tag.yml @@ -36,4 +36,4 @@ jobs: cd Dockerfiles/midstream/ podman build -t midstream_image:$latestTag -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=$latestTag podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io - podman push midstream_image:$latestTag quay.io/samvarankashyap/cvp-midstream-image:$latestTag + podman push midstream_image:$latestTag quay.io/cvpops/cvp-midstream-image:$latestTag diff --git a/.github/workflows/build_and_push_latest_image.yml b/.github/workflows/build_and_push_latest_image.yml index a891bc2f8..66436d114 100644 --- a/.github/workflows/build_and_push_latest_image.yml +++ b/.github/workflows/build_and_push_latest_image.yml @@ -35,4 +35,4 @@ jobs: cd Dockerfiles/midstream/ podman build -t midstream_image:latest -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=master podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io - podman push midstream_image:latest quay.io/samvarankashyap/cvp-midstream-image + podman push midstream_image:latest quay.io/cvpops/cvp-midstream-image:latest From ebe789e0ec2c739ec2841ccbafc0b69b9497eacd Mon Sep 17 00:00:00 2001 From: Samvaran kashyap rallabandi Date: Wed, 21 Jul 2021 10:48:39 -0400 Subject: [PATCH 2/2] Updated operatorsdk version to v1.9.0 --- .github/workflows/build_and_push_image_on_tag.yml | 3 +-- .github/workflows/build_and_push_latest_image.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_push_image_on_tag.yml b/.github/workflows/build_and_push_image_on_tag.yml index 8a3a04af2..33289443b 100644 --- a/.github/workflows/build_and_push_image_on_tag.yml +++ b/.github/workflows/build_and_push_image_on_tag.yml @@ -33,7 +33,6 @@ jobs: git checkout $latestTag echo "Latest tag is $latestTag" podman --version - cd Dockerfiles/midstream/ - podman build -t midstream_image:$latestTag -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=$latestTag + podman build -t midstream_image:$latestTag -f Dockerfiles/midstream/Dockerfile . podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io podman push midstream_image:$latestTag quay.io/cvpops/cvp-midstream-image:$latestTag diff --git a/.github/workflows/build_and_push_latest_image.yml b/.github/workflows/build_and_push_latest_image.yml index 66436d114..1b13b1024 100644 --- a/.github/workflows/build_and_push_latest_image.yml +++ b/.github/workflows/build_and_push_latest_image.yml @@ -32,7 +32,6 @@ jobs: QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} run: | podman --version - cd Dockerfiles/midstream/ - podman build -t midstream_image:latest -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=master + podman build -t midstream_image:latest -f Dockerfiles/midstream/Dockerfile . podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io podman push midstream_image:latest quay.io/cvpops/cvp-midstream-image:latest