Skip to content

Commit

Permalink
Upgrade istio and pdbs (#4645)
Browse files Browse the repository at this point in the history
* Upgrade istio and pdbs

* update licenses

* Fixes for tests and reintroduce webhook deletions from https://github.com/SeldonIO/seldon-core/pull/4235/files#diff-6b67746224f366f9b7cb9c686b8d6185047c03dd70a21e0d742b1f78cce693c1

* lint

* Remove HPA updates and fix webhooks

* re-add upgrade test

* remove deprecated webhook configuration
  • Loading branch information
ukclivecox committed Feb 9, 2023
1 parent 058cf25 commit 93431cb
Show file tree
Hide file tree
Showing 43 changed files with 6,784 additions and 9,032 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/executor_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
executor-lint:

runs-on: ubuntu-latest
container: seldonio/core-builder:0.27

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.17.0'
- name: test-executor
run: |
make -C executor lint
4 changes: 3 additions & 1 deletion .github/workflows/executor_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
executor-tests:

runs-on: ubuntu-latest
container: seldonio/core-builder:0.27

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.17.0'
- name: test-executor
run: |
make -C executor test
4 changes: 3 additions & 1 deletion .github/workflows/operator_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
operator-lint:

runs-on: ubuntu-latest
container: seldonio/core-builder:0.27

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.17.0'
- name: test-executor
run: |
make -C operator lint
4 changes: 3 additions & 1 deletion .github/workflows/operator_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
operator-tests:

runs-on: ubuntu-latest
container: seldonio/core-builder:0.27

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.17.0'
- name: test-operator
run: |
make -C operator test
2 changes: 1 addition & 1 deletion .lighthouse/jenkins-x/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
- image: uses:jenkins-x/jx3-pipeline-catalog/tasks/git-clone/git-clone-pr.yaml@versionStream
name: ""
- name: integration-step
image: seldonio/core-builder:0.27
image: seldonio/core-builder:0.29
env:
- name: SELDON_E2E_TESTS_TO_RUN
value: base
Expand Down
2 changes: 1 addition & 1 deletion .lighthouse/jenkins-x/notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
- image: uses:jenkins-x/jx3-pipeline-catalog/tasks/git-clone/git-clone-pr.yaml@versionStream
name: ""
- name: notebooks-step
image: seldonio/core-builder:0.27
image: seldonio/core-builder:0.29
env:
- name: SELDON_E2E_TESTS_TO_RUN
value: notebooks
Expand Down
2 changes: 1 addition & 1 deletion core-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN wget https://github.com/openshift/source-to-image/releases/download/v1.1.14/
mv ./sti /bin

# Installing KIND
RUN wget https://github.com/kubernetes-sigs/kind/releases/download/v0.11.1/kind-linux-amd64 && \
RUN wget https://github.com/kubernetes-sigs/kind/releases/download/v0.14.0/kind-linux-amd64 && \
chmod +x kind-linux-amd64 && \
mv ./kind-linux-amd64 /bin/kind

Expand Down
2 changes: 1 addition & 1 deletion core-builder/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DOCKER_IMAGE_NAME=seldonio/core-builder
DOCKER_IMAGE_VERSION=0.27
DOCKER_IMAGE_VERSION=0.29

build_docker_image:
cp ../testing/scripts/dev_requirements.txt .
Expand Down
2 changes: 1 addition & 1 deletion doc/source/analytics/analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The [kube-prometheus](https://github.com/prometheus-operator/kube-prometheus) st
kubectl create namespace seldon-monitoring

helm upgrade --install seldon-monitoring kube-prometheus \
--version 6.9.5 \
--version 8.3.2 \
--set fullnameOverride=seldon-monitoring \
--namespace seldon-monitoring \
--repo https://charts.bitnami.com/bitnami
Expand Down
Loading

0 comments on commit 93431cb

Please sign in to comment.