Skip to content

Commit 3f551e4

Browse files
committed
Updates image tags to v0.2.0
Signed-off-by: joshvanl <[email protected]>
1 parent 9cead16 commit 3f551e4

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
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.1.3 .
50+
docker build -t quay.io/jetstack/cert-manager-istio-csr:v0.2.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.1.3
16-
version: v0.1.3
15+
appVersion: v0.2.0
16+
version: v0.2.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.1.3](https://img.shields.io/badge/Version-v0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.3](https://img.shields.io/badge/AppVersion-v0.1.3-informational?style=flat-square)
3+
![Version: v0.2.0](https://img.shields.io/badge/Version-v0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.2.0](https://img.shields.io/badge/AppVersion-v0.2.0-informational?style=flat-square)
44

55
A Helm chart for istio-csr
66

@@ -45,7 +45,7 @@ A Helm chart for istio-csr
4545
| app.tls.trustDomain | string | `"cluster.local"` | The Istio cluster's trust domain. |
4646
| image.pullPolicy | string | `"IfNotPresent"` | Kubernetes imagePullPolicy on Deployment. |
4747
| image.repository | string | `"quay.io/jetstack/cert-manager-istio-csr"` | Target image repository. |
48-
| image.tag | string | `"v0.1.3"` | Target image version tag. |
48+
| image.tag | string | `"v0.2.0"` | Target image version tag. |
4949
| replicaCount | int | `1` | Number of replicas of istio-csr to run. |
5050
| resources | object | `{}` | |
5151
| service.port | int | `443` | Service port to expose istio-csr gRPC service. |

deploy/charts/istio-csr/values.yaml

Lines changed: 2 additions & 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.1.3
8+
tag: v0.2.0
99
# -- Kubernetes imagePullPolicy on Deployment.
1010
pullPolicy: IfNotPresent
1111

@@ -102,6 +102,7 @@ volumes: []
102102
#- name: root-ca
103103
# secret:
104104
# secretName: root-cert
105+
105106
# -- Optional extra volume mounts. Useful for mounting custom root CAs
106107
volumeMounts: []
107108
#- name: root-ca

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.4.0}"
5-
ISTIO_AGENT_IMAGE="${CERT_MANAGER_ISTIO_AGENT_IMAGE:-localhost:5000/cert-manager-istio-csr:v0.1.3}"
5+
ISTIO_AGENT_IMAGE="${CERT_MANAGER_ISTIO_AGENT_IMAGE:-localhost:5000/cert-manager-istio-csr:v0.2.0}"
66
KUBECTL_BIN="${KUBECTL_BIN:-./bin/kubectl}"
77
HELM_BIN="${HELM_BIN:-./bin/helm}"
88
KIND_BIN="${KIND_BIN:-./bin/kind}"

hack/demo/istio-csr-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.1.3
5+
tag: v0.2.0
66
pullPolicy: Always
77

88
service:

0 commit comments

Comments
 (0)