-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #710 from krakendio/dev-v2.3.0
v2.3.0
- Loading branch information
Showing
28 changed files
with
104 additions
and
60 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ jobs: | |
type=semver,pattern={{major}}.{{minor}} | ||
type=semver,pattern={{major}} | ||
- name: Build and push KrakenD plugin builder (Alpine) | ||
id: container-build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
|
@@ -52,6 +53,7 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
- name: Build and push KrakenD plugin builder (Linux generic) | ||
id: container-build-linux-generic | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
|
@@ -61,6 +63,14 @@ jobs: | |
push: true | ||
tags: ${{ steps.meta-linux-generic.outputs.tags }} | ||
labels: ${{ steps.meta-linux-generic.outputs.labels }} | ||
- name: Install cosign | ||
uses: sigstore/[email protected] | ||
- name: Sign image (Alpine) | ||
run: | | ||
cosign sign -y "docker.io/krakend/builder@${{ steps.container-build.outputs.digest }}" | ||
- name: Sign image (Linux generic) | ||
run: | | ||
cosign sign -y "docker.io/krakend/builder@${{ steps.container-build-linux-generic.outputs.digest }}" | ||
generate: | ||
name: Create release-artifacts | ||
runs-on: ubuntu-20.04 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
BIN_NAME :=krakend | ||
OS := $(shell uname | tr '[:upper:]' '[:lower:]') | ||
VERSION := 2.2.1 | ||
VERSION := 2.3.0 | ||
GIT_COMMIT := $(shell git rev-parse --short=7 HEAD) | ||
PKGNAME := krakend | ||
LICENSE := Apache 2.0 | ||
|
@@ -19,7 +19,7 @@ DESC := High performance API gateway. Aggregate, filter, manipulate and add midd | |
MAINTAINER := Daniel Ortiz <[email protected]> | ||
DOCKER_WDIR := /tmp/fpm | ||
DOCKER_FPM := devopsfaith/fpm | ||
GOLANG_VERSION := 1.20.1 | ||
GOLANG_VERSION := 1.20.3 | ||
GLIBC_VERSION := $(shell sh find_glibc.sh) | ||
ALPINE_VERSION := 3.17 | ||
OS_TAG := | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,4 @@ Darwin*) | |
;; | ||
esac | ||
|
||
echo $GLIBC | ||
echo "$GLIBC" |
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
Oops, something went wrong.