Skip to content

Commit 31da3cb

Browse files
authored
Merge pull request #201 from SpectralHiss/release-v0.6.0-alpha.0
Release v0.6.0-alpha.0
2 parents 164a29a + 8001f62 commit 31da3cb

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ ARCH ?= $(shell go env GOARCH)
1717
ISTIO_VERSION ?= 1.16.2
1818
K8S_VERSION ?= 1.26.1
1919
IMAGE_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v7,linux/ppc64le
20+
VERSION_TAG=v0.6.0-alpha.0
2021

2122
UNAME_S := $(shell uname -s)
2223
ifeq ($(UNAME_S),Linux)
@@ -62,7 +63,11 @@ verify: test build ## tests and builds cert-manager-istio-csr
6263
# arguments to `--push`.
6364
.PHONY: image
6465
image: ## build docker image targeting all supported platforms
65-
docker buildx build --platform=$(IMAGE_PLATFORMS) -t quay.io/jetstack/cert-manager-istio-csr:v0.5.0 --output type=oci,dest=./bin/cert-manager-istio-csr-oci .
66+
docker buildx build --platform=$(IMAGE_PLATFORMS) -t quay.io/jetstack/cert-manager-istio-csr:$(VERSION_TAG) --output type=oci,dest=./bin/cert-manager-istio-csr-oci .
67+
68+
.PHONY: package-chart
69+
package-chart: helm-docs
70+
helm package deploy/charts/istio-csr
6671

6772
.PHONY: clean
6873
clean: ## clean up created files

deploy/charts/istio-csr/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ maintainers:
1212
sources:
1313
- https://github.com/cert-manager/istio-csr
1414

15-
appVersion: v0.5.0
16-
version: v0.5.0
15+
appVersion: v0.6.0-alpha.0
16+
version: v0.6.0-alpha.0

deploy/charts/istio-csr/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cert-manager-istio-csr
22

3-
![Version: v0.5.0](https://img.shields.io/badge/Version-v0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.0](https://img.shields.io/badge/AppVersion-v0.5.0-informational?style=flat-square)
3+
![Version: v0.6.0-alpha.0](https://img.shields.io/badge/Version-v0.6.0--alpha.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.6.0-alpha.0](https://img.shields.io/badge/AppVersion-v0.6.0--alpha.0-informational?style=flat-square)
44

55
istio-csr enables the use of cert-manager for issuing certificates in Istio service meshes
66

@@ -53,7 +53,7 @@ istio-csr enables the use of cert-manager for issuing certificates in Istio serv
5353
| app.tls.trustDomain | string | `"cluster.local"` | The Istio cluster's trust domain. |
5454
| image.pullPolicy | string | `"IfNotPresent"` | Kubernetes imagePullPolicy on Deployment. |
5555
| image.repository | string | `"quay.io/jetstack/cert-manager-istio-csr"` | Target image repository. |
56-
| image.tag | string | `"v0.5.0"` | Target image version tag. |
56+
| image.tag | string | `"v0.6.0-alpha.0"` | Target image version tag. |
5757
| imagePullSecrets | list | `[]` | Optional secrets used for pulling the istio-csr container image. |
5858
| nodeSelector | object | `{}` | |
5959
| replicaCount | int | `1` | Number of replicas of istio-csr to run. |

deploy/charts/istio-csr/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ image:
55
# -- Target image repository.
66
repository: quay.io/jetstack/cert-manager-istio-csr
77
# -- Target image version tag.
8-
tag: v0.5.0
8+
tag: v0.6.0-alpha.0
99
# -- Kubernetes imagePullPolicy on Deployment.
1010
pullPolicy: IfNotPresent
1111

0 commit comments

Comments
 (0)