Add docker registry operator #22
Workflow file for this run
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 verify | |
on: | |
push: | |
branches: [ "main", "release-*" ] | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'examples/**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- converted_to_draft | |
jobs: | |
lint: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
working-directory: 'components/operator' | |
unit-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run test | |
run: make -C components/operator test | |
# upgrade-test: //TODO: change it to run dockerregistry verify (need to be implemented) | |
# runs-on: ubuntu-latest | |
# if: github.event_name == 'push' | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: create single cluster | |
# uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0 | |
# with: | |
# cluster-name: "k3dCluster" | |
# args: >- | |
# --agents 1 | |
# --image rancher/k3s:v1.28.6-k3s1 | |
# --port 80:80@loadbalancer | |
# --port 443:443@loadbalancer | |
# --wait | |
# - name: upgrade test | |
# run: make -C hack upgrade-test | |
# env: | |
# IMG: europe-docker.pkg.dev/kyma-project/prod/dockerregistry-operator:${{ github.sha }} | |
# gardener-integration-test: //TODO: change it to run dockerregistry verify (need to be implemented) | |
# if: github.event_name == 'push' | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: save sa | |
# shell: bash | |
# run: 'echo "$GARDENER_SA" > /tmp/gardener-sa.yaml' | |
# env: | |
# GARDENER_SA: ${{ secrets.GARDENER_SA }} | |
# - name: provision gardener | |
# run: make -C hack provision-gardener | |
# env: | |
# GARDENER_SECRET_NAME: ${{ secrets.GARDENER_SECRET_NAME }} | |
# GARDENER_PROJECT: ${{ secrets.GARDENER_PROJECT }} | |
# GARDENER_SA_PATH: /tmp/gardener-sa.yaml | |
# - name: run test | |
# run: make -C hack integration-test-on-cluster | |
# env: | |
# IMG: europe-docker.pkg.dev/kyma-project/prod/dockerregistry-operator:${{ github.sha }} | |
# - name: deprovision gardener | |
## https://docs.github.com/en/actions/learn-github-actions/expressions#always | |
# if: ${{ always() }} | |
# run: make -C hack deprovision-gardener | |
# env: | |
# GARDENER_SA_PATH: /tmp/gardener-sa.yaml |