Skip to content

Commit f3034d8

Browse files
committed
Sets release to v0.1.0
Signed-off-by: joshvanl <[email protected]>
1 parent d0f0b7f commit f3034d8

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ build_image_binary: ## builds image binary
4747
GOARCH=$(ARCH) GOOS=linux CGO_ENABLED=0 go build -o ./bin/cert-manager-istio-csr-linux ./cmd/.
4848

4949
image: build_image_binary ## build docker image from binary
50-
docker build -t quay.io/jetstack/cert-manager-istio-csr:v0.0.1-alpha.4 .
50+
docker build -t quay.io/jetstack/cert-manager-istio-csr:v0.1.0 .
5151

5252
clean: ## clean up created files
5353
rm -rf \

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.0.1-alpha.4
16-
version: v0.0.1-alpha.4
15+
appVersion: v0.1.0
16+
version: v0.1.0

deploy/charts/istio-csr/README.md

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

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

55
A Helm chart for istio-csr
66

@@ -34,10 +34,10 @@ A Helm chart for istio-csr
3434
| certificate.namespace | string | `"istio-system"` | Namespace to create CertificateRequests from incoming gRPC CSRs. |
3535
| certificate.preserveCertificateRequests | bool | `false` | Don't delete created CertificateRequests once they have been signed. |
3636
| certificate.rootCA | string | `nil` | An optional PEM encoded root CA that the root CA ConfigMap in all namespaces will be populated with. If empty, the CA returned from cert-manager for the serving certificate will be used. |
37-
| image.pullPolicy | string | `"IfNotPresent"` | Kubernetes imagePullPolicy on Deployment |
38-
| image.repository | string | `"quay.io/jetstack/cert-manager-istio-csr"` | Target image repository |
39-
| image.tag | string | `"v0.0.1-alpha.4"` | Target image version tag |
40-
| replicaCount | int | `1` | |
37+
| image.pullPolicy | string | `"IfNotPresent"` | Kubernetes imagePullPolicy on Deployment. |
38+
| image.repository | string | `"quay.io/jetstack/cert-manager-istio-csr"` | Target image repository. |
39+
| image.tag | string | `"v0.1.0"` | Target image version tag. |
40+
| replicaCount | int | `1` | Number of replicas of istio-csr to run. |
4141
| resources | object | `{}` | |
4242
| service.port | int | `443` | Service port to expose istio-csr gRPC service. |
4343
| service.type | string | `"ClusterIP"` | Service type to expose istio-csr gRPC service. |

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.0.1-alpha.4
8+
tag: v0.1.0
99
# -- Kubernetes imagePullPolicy on Deployment.
1010
pullPolicy: IfNotPresent
1111

hack/demo/deploy-demo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
K8S_NAMESPACE="${K8S_NAMESPACE:-istio-system}"
44
CERT_MANAGER_VERSION="${CERT_MANAGER_VERSION:-1.0.3}"
5-
ISTIO_AGENT_IMAGE="${CERT_MANAGER_ISTIO_AGENT_IMAGE:-localhost:5000/cert-manager-istio-csr:v0.0.1-alpha.4}"
5+
ISTIO_AGENT_IMAGE="${CERT_MANAGER_ISTIO_AGENT_IMAGE:-localhost:5000/cert-manager-istio-csr:v0.1.0}"
66
KUBECTL_BIN="${KUBECTL_BIN:-./bin/kubectl}"
77
HELM_BIN="${HELM_BIN:-./bin/helm}"
88
KIND_BIN="${KIND_BIN:-./bin/kind}"

hack/demo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 3
22

33
image:
44
repository: localhost:5000/cert-manager-istio-csr
5-
tag: v0.0.1-alpha.4
5+
tag: v0.1.0
66
pullPolicy: Always
77

88
service:

0 commit comments

Comments
 (0)