Merge branch 'main' into main #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: operator images | |
on: | |
push: | |
paths: | |
- 'operator/**' | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
IMAGE_REGISTRY: quay.io | |
IMAGE_ORGANIZATION: openshift-logging | |
IMAGE_OPERATOR_NAME: loki-operator | |
IMAGE_BUNDLE_NAME: loki-operator-bundle | |
IMAGE_CALCULATOR_NAME: storage-size-calculator | |
jobs: | |
publish-manager: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Quay.io | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
logout: true | |
username: ${{ secrets.OPENSHIFT_LOGGING_USER }} | |
password: ${{ secrets.OPENSHIFT_LOGGING_PASS }} | |
- name: Get image tags | |
id: image_tags | |
run: | | |
PULLSPEC="$IMAGE_REGISTRY/$IMAGE_ORGANIZATION/$IMAGE_OPERATOR_NAME" | |
TAGS=("$PULLSPEC:latest", "$PULLSPEC:v0.0.1") | |
BUILD_DATE="$(date -u +'%Y-%m-%d')" | |
VCS_BRANCH="$(git rev-parse --abbrev-ref HEAD)" | |
VCS_REF="$(git rev-parse --short HEAD)" | |
TAGS+=("$PULLSPEC:$VCS_BRANCH-$BUILD_DATE-$VCS_REF") | |
IMAGE_TAGS=$(IFS=$','; echo "${TAGS[*]}") | |
echo "IMAGE_TAGS=$IMAGE_TAGS" >> $GITHUB_OUTPUT | |
- name: Build and publish image on quay.io | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./operator | |
push: true | |
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}" | |
publish-bundle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Quay.io | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
logout: true | |
username: ${{ secrets.OPENSHIFT_LOGGING_USER }} | |
password: ${{ secrets.OPENSHIFT_LOGGING_PASS }} | |
- name: Get image tags | |
id: image_tags | |
run: | | |
PULLSPEC="$IMAGE_REGISTRY/$IMAGE_ORGANIZATION/$IMAGE_BUNDLE_NAME" | |
TAGS=("$PULLSPEC:latest", "$PULLSPEC:v0.0.1") | |
BUILD_DATE="$(date -u +'%Y-%m-%d')" | |
VCS_BRANCH="$(git rev-parse --abbrev-ref HEAD)" | |
VCS_REF="$(git rev-parse --short HEAD)" | |
TAGS+=("$PULLSPEC:$VCS_BRANCH-$BUILD_DATE-$VCS_REF") | |
IMAGE_TAGS=$(IFS=$','; echo "${TAGS[*]}") | |
echo "IMAGE_TAGS=$IMAGE_TAGS" >> $GITHUB_OUTPUT | |
- name: Build and publish image on quay.io | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./operator/bundle/openshift | |
file: ./operator/bundle/openshift/bundle.Dockerfile | |
push: true | |
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}" | |
publish-size-calculator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Quay.io | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
logout: true | |
username: ${{ secrets.OPENSHIFT_LOGGING_USER }} | |
password: ${{ secrets.OPENSHIFT_LOGGING_PASS }} | |
- name: Get image tags | |
id: image_tags | |
run: | | |
PULLSPEC="$IMAGE_REGISTRY/$IMAGE_ORGANIZATION/$IMAGE_CALCULATOR_NAME" | |
TAGS=("$PULLSPEC:latest", "$PULLSPEC:v0.0.1") | |
BUILD_DATE="$(date -u +'%Y-%m-%d')" | |
VCS_BRANCH="$(git rev-parse --abbrev-ref HEAD)" | |
VCS_REF="$(git rev-parse --short HEAD)" | |
TAGS+=("$PULLSPEC:$VCS_BRANCH-$BUILD_DATE-$VCS_REF") | |
IMAGE_TAGS=$(IFS=$','; echo "${TAGS[*]}") | |
echo "IMAGE_TAGS=$IMAGE_TAGS" >> $GITHUB_OUTPUT | |
- name: Build and publish image on quay.io | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./operator | |
file: ./operator/calculator.Dockerfile | |
push: true | |
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}" |