Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility matrix cert manager #503

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ endif
KUBE_VERSION ?= 1.21
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml

CERTMANAGER_VERSION ?= 1.6.0

ensure-generate-is-noop: VERSION=$(OPERATOR_VERSION)
ensure-generate-is-noop: USER=opentelemetry
ensure-generate-is-noop: set-image-controller generate bundle
Expand Down Expand Up @@ -138,7 +140,7 @@ start-kind:
kind load docker-image local/opentelemetry-operator:e2e

cert-manager:
kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v1.6.0/cert-manager.yaml
kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v${CERTMANAGER_VERSION}/cert-manager.yaml
kubectl wait --timeout=5m --for=condition=available deployment cert-manager -n cert-manager
kubectl wait --timeout=5m --for=condition=available deployment cert-manager-cainjector -n cert-manager
kubectl wait --timeout=5m --for=condition=available deployment cert-manager-webhook -n cert-manager
Expand Down
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,30 @@ The OpenTelemetry Operator *might* work on versions outside of the given range,
| v0.29.0 | v1.19 to v1.21 |
| v0.28.0 | v1.19 to v1.21 |
| v0.27.0 | v1.19 to v1.21 |
| v0.26.0 | v1.18 to v1.20 |


### OpenTelemetry Operator vs. Cert Manager
Since Cert-Manager deprecated *cert-manager.io/v1alpha2, cert-manager.io/v1alpha3, cert-manager.io/v1beta1, acme.cert-manager.io/v1alpha2, acme.cert-manager.io/v1alpha3, acme.cert-manager.io/v1beta1* APIs on version 1.4.0, we decided to create a compability Matrix between OpenTelemetry Operator and Cert-manager.
yuriolisa marked this conversation as resolved.
Show resolved Hide resolved

| OpenTelemetry Operator | Cert-Manager |
yuriolisa marked this conversation as resolved.
Show resolved Hide resolved
|------------------------|----------------------|
| v0.37.1 | v1.4.0 to v1.6.1 |
jpkrohling marked this conversation as resolved.
Show resolved Hide resolved
| v0.37.0 | v1.4.0 to v1.5.4 |
| v0.36.0 | v1.4.0 to v1.5.4 |
| v0.35.0 | v1.4.0 to v1.5.4 |
| v0.34.0 | v1.4.0 to v1.5.4 |
| v0.33.0 | v1.4.0 to v1.5.4 |
| v0.32.0 (skipped) | n/a |
| v0.31.0 | v1.4.0 to v1.5.4 |
| v0.30.0 | v1.4.0 to v1.5.4 |
| v0.29.0 | v1.4.0 to v1.5.4 |
| v0.28.0 | v1.4.0 to v1.5.4 |
| v0.27.0 | v1.4.0 to v1.5.4 |

In pursuit of continuous improvement, a variable named `CERTMANAGER_VERSION` which can be run:
yuriolisa marked this conversation as resolved.
Show resolved Hide resolved
```bash
CERTMANAGER_VERSION=1.60 make cert-manager
```

## Contributing and Developing

Expand Down