Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
name: "pygeoapi-k8s-manager: build, publish and scan container image"
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
k8s_version: ["1.33","1.34", "1.35"]
steps:
-
name: Checkout Repository
Expand Down Expand Up @@ -98,8 +102,12 @@ jobs:
GIT_BRANCH=${{ env.BRANCH }}
VERSION=${{ env.DOCKER_METADATA_OUTPUT_VERSION }}
PYGEOAPI_VERSION=${{ env.PYGEOAPI_VERSION }}
K8S_VERSION=${{ matrix.k8s_version }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
tags: |
${{ steps.meta.outputs.tags }}
${{ env.IMAGE_TAG }}:k8s-${{ matrix.k8s_version }}
${{ env.IMAGE_TAG }}:latest-k8s-${{ matrix.k8s_version }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ FROM geopython/pygeoapi:${PYGEOAPI_VERSION}

ARG VERSION=0.24

ARG K8S_VERSION=1.35

ENV K8S_VERSION=${K8S_VERSION}

LABEL maintainer="Jürrens, Eike Hinderk <e.h.juerrens@52north.org>" \
org.opencontainers.image.authors="Jürrens, Eike Hinderk <e.h.juerrens@52north.org>" \
org.opencontainers.image.url="https://github.com/52North/pygeoapi-k8s-manager.git" \
Expand Down