From 7df47ab5096c951ad85d566d19a12420be15e710 Mon Sep 17 00:00:00 2001 From: vsoch Date: Sat, 7 Dec 2024 19:08:48 -0700 Subject: [PATCH] crd: update cert-manager to 1.16.2 Signed-off-by: vsoch --- .github/workflows/e2e-test.yaml | 6 +++--- README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e-test.yaml b/.github/workflows/e2e-test.yaml index 741be75..4673a6a 100644 --- a/.github/workflows/e2e-test.yaml +++ b/.github/workflows/e2e-test.yaml @@ -145,8 +145,8 @@ jobs: - name: Install Cert Manager run: | - kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.1/cert-manager.yaml - sleep 10 + kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.yaml + sleep 20 - name: Test Fluence run: /bin/bash ./.github/test.sh @@ -176,4 +176,4 @@ jobs: run: | docker push ${{ env.fluence_container }} --all-tags docker push ${{ env.sidecar_container }} --all-tags - docker push ${{ env.controller_container }} --all-tags \ No newline at end of file + docker push ${{ env.controller_container }} --all-tags diff --git a/README.md b/README.md index 300eb1d..90a9596 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ We provide a set of pre-build containers [alongside the repository](https://gith that you can easily use to deploy Fluence right away! You'll first need to install the certificate manager: ```bash -kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.1/cert-manager.yaml +kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.yaml ``` And then clone the proper helm charts, and then install to your cluster. We provide helper commands to do that. @@ -177,7 +177,7 @@ kind create cluster --config ./examples/kind-config.yaml And again install the certificate manager: ```bash -kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.1/cert-manager.yaml +kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.yaml ``` **Important** if you are developing or testing fluence, note that custom scheduler plugins don't seem to work out of the box with MiniKube (but everything works with kind). Likely there are extensions or similar that need to be configured with MiniKube (that we have not looked into).