Skip to content

Commit

Permalink
Merge pull request #1950 from bcgov/chore/update-hpa-k8s-api-version
Browse files Browse the repository at this point in the history
chore: update hpa k8s api version
  • Loading branch information
dleard authored Jan 10, 2025
2 parents 018b814 + f1ae450 commit 429b244
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/actions/dev-env-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
uses: asdf-vm/actions/setup@v1
- uses: shogo82148/actions-setup-perl@v1
- name: install pg perl library
run: sudo apt-get install -y libpq-dev libdbd-pg-perl
run: sudo apt-get install -y libpq-dev libdbd-pg-perl libreadline-dev uuid-dev libsqlite3-dev
shell: bash
- name: set perl env variables
shell: bash
Expand All @@ -23,7 +23,7 @@ runs:
with:
path: |
~/.asdf
key: ${{ runner.os }}-asdf-cache-${{ hashFiles('.tool-versions') }}
key: ${{ runner.os }}-asdf-cache-${{ hashFiles('.tool-versions') }}-v1
- uses: actions/cache@v3
id: perl-cache
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install oc
uses: redhat-actions/oc-installer@v1
with:
oc_version: "4.6"
- name: Authenticate to OpenShift Linter namespace
uses: redhat-actions/oc-login@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nodejs 20.14.0
yarn 1.22.22
postgres 14.0
python 3.9.19
postgres 16.0
python 3.11.0
golang 1.22.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ SQITCH_VERSION=${word 3,${shell ${SQITCH} --version}}
SQITCH_MIN_VERSION=1.1.0
DB_NAME=cif
PG_PROVE=pg_prove -h localhost
PGTAP_VERSION=1.2.0
PGTAP_VERSION=1.3.3

help: ## Show this help.
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST)
Expand Down
2 changes: 1 addition & 1 deletion chart/cas-cif/templates/hpa.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v2beta1
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "cas-cif.fullname" . }}
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pre-commit==2.19.0
setuptools==75.8.0
pre-commit==3.8.0
gitlint==0.17.0

0 comments on commit 429b244

Please sign in to comment.