Skip to content

Commit 51408a8

Browse files
committed
ci: added kind 0.25.0
1 parent 4b8abba commit 51408a8

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image: null
22

33
variables:
4-
SG_CI_IMAGE_NAME: "ci:1.29"
4+
SG_CI_IMAGE_NAME: "ci:1.30"
55
BUILDER_IMAGE_NAME: "builder:1.9"
66
SKIP_NATIVE: "false"
77
SKIP_E2E: "false"

stackgres-k8s/ci/build/Dockerfile-ci

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,6 @@ FROM registry.access.redhat.com/ubi8-minimal:8.10-1018
154154
# another reason to use java-operator-sdk :/
155155
RUN wget https://github.com/operator-framework/operator-sdk/releases/download/v1.32.0/operator-sdk_linux_$(uname -m | grep -qxF aarch64 && echo arm64 || echo amd64) -O /bin/operator-sdk-1.32
156156
RUN chmod a+x /bin/operator-sdk-1.32
157+
RUN wget -O /bin/kind-0.25.0 "https://github.com/kubernetes-sigs/kind/releases/download/v0.25.0/kind-linux-$(uname -m | grep -qxF aarch64 && echo arm64 || echo amd64)"
158+
RUN chmod a+x /bin/kind-0.25.0
157159

stackgres-k8s/ci/build/ciw

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22
PROJECT_PATH="$(realpath "$(dirname "$0")/../../..")"
33
CONTAINER_NAME="${CONTAINER_NAME:-buildw-$(printf '%x' "$(date +%s)")}"
4+
export PATH=/bin:/usr/bin:/usr/local/bin
45
env > "/tmp/$CONTAINER_NAME.env"
56
IMAGE="${IMAGE:-registry.gitlab.com/ongresinc/stackgres/$(yq -r '.variables.SG_CI_IMAGE_NAME' "$PROJECT_PATH"/.gitlab-ci.yml 2>/dev/null || sed -n 's/ *SG_CI_IMAGE_NAME: "\([^"]\+\)" */\1/p' .gitlab-ci.yml)-$(uname -m | grep -qxF aarch64 && echo arm64 || echo amd64)}"
67
# shellcheck disable=SC2046

stackgres-k8s/ci/build/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.images:
2-
ci_image: &ci_image registry.gitlab.com/ongresinc/stackgres/ci:1.29
2+
ci_image: &ci_image registry.gitlab.com/ongresinc/stackgres/ci:1.30
33
jdk_build_image: &jdk_build_image registry.gitlab.com/ongresinc/stackgres/builder:1.9
44
jdk_runtime_image: &jdk_runtime_image registry.access.redhat.com/ubi9/openjdk-21:1.21-3
55
ubi8_micro_image: &ubi8_micro_image registry.access.redhat.com/ubi8-micro:8.10-15

0 commit comments

Comments
 (0)