Skip to content

Commit e8ed4c9

Browse files
committed
Pre-release v1.14.0-alpha.1
Signed-off-by: Richard Wall <richard.wall@venafi.com>
1 parent 96f23a2 commit e8ed4c9

7 files changed

Lines changed: 68 additions & 9 deletions

File tree

.spelling

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
phillebaba
2+
tberreis
13
allenmunC1
24
jeremycampbell
35
snorwin

content/docs/installation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Learn about the various ways you can install cert-manager and how to choose betw
1212
The default static configuration can be installed as follows:
1313

1414
```bash
15-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.0/cert-manager.yaml
15+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.1/cert-manager.yaml
1616
```
1717

1818
📖 Read more about [installing cert-manager using kubectl apply and static manifests](./kubectl.md).

content/docs/installation/code-signing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The simplest way to verify signatures is to download the public key and then pas
2222

2323
```console
2424
curl -sSOL https://cert-manager.io/public-keys/cert-manager-pubkey-2021-09-20.pem
25-
IMAGE_TAG=v1.14.0-alpha.0 # change as needed
25+
IMAGE_TAG=v1.14.0-alpha.1 # change as needed
2626
cosign verify --signature-digest-algorithm sha512 --key cert-manager-pubkey-2021-09-20.pem quay.io/jetstack/cert-manager-acmesolver:$IMAGE_TAG
2727
cosign verify --signature-digest-algorithm sha512 --key cert-manager-pubkey-2021-09-20.pem quay.io/jetstack/cert-manager-cainjector:$IMAGE_TAG
2828
cosign verify --signature-digest-algorithm sha512 --key cert-manager-pubkey-2021-09-20.pem quay.io/jetstack/cert-manager-ctl:$IMAGE_TAG

content/docs/installation/helm.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ section below for details on each method.
4747
> Recommended for production installations
4848
4949
```bash
50-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.0/cert-manager.crds.yaml
50+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.1/cert-manager.crds.yaml
5151
```
5252

5353
##### Option 2: install CRDs as part of the Helm release
@@ -70,7 +70,7 @@ helm install \
7070
cert-manager jetstack/cert-manager \
7171
--namespace cert-manager \
7272
--create-namespace \
73-
--version v1.14.0-alpha.0 \
73+
--version v1.14.0-alpha.1 \
7474
# --set installCRDs=true
7575
```
7676

@@ -83,7 +83,7 @@ helm install \
8383
cert-manager jetstack/cert-manager \
8484
--namespace cert-manager \
8585
--create-namespace \
86-
--version v1.14.0-alpha.0 \
86+
--version v1.14.0-alpha.1 \
8787
# --set installCRDs=true
8888
--set prometheus.enabled=false \ # Example: disabling prometheus using a Helm parameter
8989
--set webhook.timeoutSeconds=4 # Example: changing the webhook timeout using a Helm parameter
@@ -114,7 +114,7 @@ version: 0.1.0
114114
appVersion: "0.1.0"
115115
dependencies:
116116
- name: cert-manager
117-
version: v1.14.0-alpha.0
117+
version: v1.14.0-alpha.1
118118
repository: https://charts.jetstack.io
119119
alias: cert-manager
120120
condition: cert-manager.enabled
@@ -148,7 +148,7 @@ helm template \
148148
cert-manager jetstack/cert-manager \
149149
--namespace cert-manager \
150150
--create-namespace \
151-
--version v1.14.0-alpha.0 \
151+
--version v1.14.0-alpha.1 \
152152
# --set prometheus.enabled=false \ # Example: disabling prometheus using a Helm parameter
153153
# --set installCRDs=true \ # Uncomment to also template CRDs
154154
> cert-manager.custom.yaml

content/docs/installation/kubectl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ are included in a single YAML manifest file:
2121
Install all cert-manager components:
2222

2323
```bash
24-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.0/cert-manager.yaml
24+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.0-alpha.1/cert-manager.yaml
2525
```
2626

2727
By default, cert-manager will be installed into the `cert-manager`

content/docs/installation/operator-lifecycle-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ The following JSON patch will append `-v=6` to command line arguments of the cer
218218
(the first container of the first Deployment).
219219

220220
```bash
221-
kubectl patch csv cert-manager.v1.14.0-alpha.0 \
221+
kubectl patch csv cert-manager.v1.14.0-alpha.1 \
222222
--type json \
223223
-p '[{"op": "add", "path": "/spec/install/spec/deployments/0/spec/template/spec/containers/0/args/-", "value": "-v=6" }]'
224224
```

content/docs/releases/release-notes/release-notes-1.14.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,63 @@ title: Release 1.14
33
description: 'cert-manager release notes: cert-manager 1.14'
44
---
55

6+
## `v1.14.0-alpha.1`
7+
8+
This is the second pre-release of cert-manager 1.14 which will be released on January 31 2024.
9+
10+
### Community
11+
12+
Thanks again to all open-source contributors with commits in this release, including:
13+
- [@phillebaba](https://github.com/phillebaba)
14+
- [@tberreis](https://github.com/tberreis)
15+
16+
### Changes since `v1.14.0-alpha.0`
17+
18+
#### Feature
19+
20+
- Add TLS support to the metrics endpoint through either a certificate file or through dynamically issued certificates ([#6574](https://github.com/cert-manager/cert-manager/pull/6574), [@ThatsMrTalbot](https://github.com/ThatsMrTalbot))
21+
- Helm Chart: allow changing the default Deployment `revisionHistoryLimit` ([#6248](https://github.com/cert-manager/cert-manager/pull/6248), [@tberreis](https://github.com/tberreis))
22+
- Security: Limit the size of the response body read from HTTP requests by cert-manager. ([#6619](https://github.com/cert-manager/cert-manager/pull/6619), [@ThatsMrTalbot](https://github.com/ThatsMrTalbot))
23+
24+
#### Bug or Regression
25+
26+
- BUGFIX: Ensure `otherName` SAN changes in Certificate resources trigger re-issuance. ([#6620](https://github.com/cert-manager/cert-manager/pull/6620), [@SpectralHiss](https://github.com/SpectralHiss))
27+
- Bugfix: Publish the `startupapicheck` image to `quay.io` ([#6609](https://github.com/cert-manager/cert-manager/pull/6609), [@wallrj](https://github.com/wallrj))
28+
29+
#### Other (Cleanup or Flake)
30+
31+
- cert-manager is now built with Go `v1.21.6` ([#6628](https://github.com/cert-manager/cert-manager/pull/6628), [@SgtCoDFish](https://github.com/SgtCoDFish))
32+
- Update the Azure SDK and remove deprecated `autorest` dependency ([#5452](https://github.com/cert-manager/cert-manager/pull/5452), [@phillebaba](https://github.com/phillebaba))
33+
34+
### Dependencies
35+
36+
#### Added
37+
- `github.com/Azure/azure-sdk-for-go/sdk/azcore`: [`v1.9.1`](https://github.com/Azure/azure-sdk-for-go/sdk/azcore/tree/v1.9.1)
38+
- `github.com/Azure/azure-sdk-for-go/sdk/azidentity`: [`v1.4.0`](https://github.com/Azure/azure-sdk-for-go/sdk/azidentity/tree/v1.4.0)
39+
- `github.com/Azure/azure-sdk-for-go/sdk/internal`: [`v1.5.1`](https://github.com/Azure/azure-sdk-for-go/sdk/internal/tree/v1.5.1)
40+
- `github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dns/armdns`: [`v1.2.0`](https://github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dns/armdns/tree/v1.2.0)
41+
- `github.com/AzureAD/microsoft-authentication-library-for-go`: [`v1.1.1`](https://github.com/AzureAD/microsoft-authentication-library-for-go/tree/v1.1.1)
42+
- `github.com/dnaeon/go-vcr`: [`v1.2.0`](https://github.com/dnaeon/go-vcr/tree/v1.2.0)
43+
- `github.com/golang-jwt/jwt/v5`: [`v5.0.0`](https://github.com/golang-jwt/jwt/v5/tree/v5.0.0)
44+
- `github.com/kylelemons/godebug`: [`v1.1.0`](https://github.com/kylelemons/godebug/tree/v1.1.0)
45+
- `github.com/montanaflynn/stats`: [`v0.7.0`](https://github.com/montanaflynn/stats/tree/v0.7.0)
46+
- `github.com/pkg/browser`: [`681adbf`](https://github.com/pkg/browser/tree/681adbf)
47+
48+
#### Changed
49+
_Nothing has changed._
50+
51+
#### Removed
52+
- `github.com/Azure/azure-sdk-for-go`: [`v68.0.0+incompatible`](https://github.com/Azure/azure-sdk-for-go/tree/v68.0.0)
53+
- `github.com/Azure/go-autorest/autorest/adal`: [`v0.9.23`](https://github.com/Azure/go-autorest/autorest/adal/tree/v0.9.23)
54+
- `github.com/Azure/go-autorest/autorest/date`: [`v0.3.0`](https://github.com/Azure/go-autorest/autorest/date/tree/v0.3.0)
55+
- `github.com/Azure/go-autorest/autorest/mocks`: [`v0.4.2`](https://github.com/Azure/go-autorest/autorest/mocks/tree/v0.4.2)
56+
- `github.com/Azure/go-autorest/autorest/to`: [`v0.4.0`](https://github.com/Azure/go-autorest/autorest/to/tree/v0.4.0)
57+
- `github.com/Azure/go-autorest/autorest/validation`: [`v0.3.1`](https://github.com/Azure/go-autorest/autorest/validation/tree/v0.3.1)
58+
- `github.com/Azure/go-autorest/autorest`: [`v0.11.29`](https://github.com/Azure/go-autorest/autorest/tree/v0.11.29)
59+
- `github.com/Azure/go-autorest/logger`: [`v0.2.1`](https://github.com/Azure/go-autorest/logger/tree/v0.2.1)
60+
- `github.com/Azure/go-autorest/tracing`: [`v0.6.0`](https://github.com/Azure/go-autorest/tracing/tree/v0.6.0)
61+
- `github.com/Azure/go-autorest`: [`v14.2.0+incompatible`](https://github.com/Azure/go-autorest/tree/v14.2.0)
62+
663
## `v1.14.0-alpha.0`
764

865
This is a pre-release of cert-manager 1.14 which will be released on January 31 2024.

0 commit comments

Comments
 (0)