This is an automated email from the ASF dual-hosted git repository.
gyfora pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 138b0ba Upgrading cert-manager to version 1.8.0
138b0ba is described below
commit 138b0baee0b790ebf7fead6fe36d308f6d8fb9ca
Author: Chethan UK <[email protected]>
AuthorDate: Thu Jun 2 15:08:16 2022 +0000
Upgrading cert-manager to version 1.8.0
---
.github/workflows/ci.yml | 4 ++--
docs/content/docs/try-flink-kubernetes-operator/quick-start.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c6e6f6c..fb9f846 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -56,7 +56,7 @@ jobs:
- name: Install cert-manager
run: |
kubectl get pods -A
- kubectl apply -f
https://github.com/jetstack/cert-manager/releases/download/v1.7.1/cert-manager.yaml
+ kubectl apply -f
https://github.com/jetstack/cert-manager/releases/download/v1.8.0/cert-manager.yaml
kubectl -n cert-manager wait --all=true --for=condition=Available
--timeout=300s deploy
- name: Build image
run: |
@@ -134,7 +134,7 @@ jobs:
- name: Install cert-manager
run: |
kubectl get pods -A
- kubectl apply -f
https://github.com/jetstack/cert-manager/releases/download/v1.7.1/cert-manager.yaml
+ kubectl apply -f
https://github.com/jetstack/cert-manager/releases/download/v1.8.0/cert-manager.yaml
kubectl -n cert-manager wait --all=true --for=condition=Available
--timeout=300s deploy
- name: Build image
run: |
diff --git a/docs/content/docs/try-flink-kubernetes-operator/quick-start.md
b/docs/content/docs/try-flink-kubernetes-operator/quick-start.md
index aa4f531..b6a1f08 100644
--- a/docs/content/docs/try-flink-kubernetes-operator/quick-start.md
+++ b/docs/content/docs/try-flink-kubernetes-operator/quick-start.md
@@ -66,7 +66,7 @@ We also recommend [k9s](https://k9scli.io/) as GUI for
kubernetes, but it is opt
Install the certificate manager on your Kubernetes cluster to enable adding
the webhook component (only needed once per Kubernetes cluster):
```bash
-kubectl create -f
https://github.com/jetstack/cert-manager/releases/download/v1.7.1/cert-manager.yaml
+kubectl create -f
https://github.com/jetstack/cert-manager/releases/download/v1.8.0/cert-manager.yaml
```
{{< hint info >}}