Skip to content

Commit 24f801c

Browse files
authored
fix: Add envsubst to runner image (#248)
* fix: Add envsubst to runner image Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es> * fix: Add envsubst to runner image Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es> * use gh runners Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es> --------- Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es>
1 parent 481ba68 commit 24f801c

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/keda-k6-runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
generate:
1212
name: Generate image
13-
runs-on: ARM64
13+
runs-on: ubuntu-24.04-arm
1414
steps:
1515
- name: Check out code
1616
uses: actions/checkout@v3

.github/workflows/keda-tools.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
generate:
1212
name: Generate image
13-
runs-on: ARM64
13+
runs-on: ubuntu-24.04-arm
1414
steps:
1515
- name: Check out code
1616
uses: actions/checkout@v3

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
include:
42-
- runner: ARM64
42+
- runner: ubuntu-24.04-arm
4343
name: arm64
4444
- runner: ubuntu-latest
4545
name: amd64
@@ -79,7 +79,7 @@ jobs:
7979
strategy:
8080
matrix:
8181
include:
82-
- runner: ARM64
82+
- runner: ubuntu-24.04-arm
8383
name: arm64
8484
- runner: ubuntu-latest
8585
name: amd64

tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:22.04
22

33
# Install prerequisite
44
RUN apt update && \
5-
apt-get install software-properties-common wget curl build-essential git git-lfs unzip jq -y
5+
apt-get install software-properties-common wget curl build-essential git git-lfs unzip jq gettext-base -y
66

77
# Use Bash instead of Dash
88
RUN ln -sf bash /bin/sh

0 commit comments

Comments
 (0)