Skip to content

Commit d6bed1d

Browse files
authored
Merge pull request #35 from cert-manager/release-v0.1.1
Updates manifests for release v0.1.1
2 parents 2a0190e + ab060bf commit d6bed1d

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.0 .
50+
docker build -t quay.io/jetstack/cert-manager-istio-csr:v0.1.1 .
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.0
16-
version: v0.1.0
15+
appVersion: v0.1.1
16+
version: v0.1.1

deploy/charts/istio-csr/README.md

Lines changed: 3 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.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)
3+
![Version: v0.1.1](https://img.shields.io/badge/Version-v0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.1](https://img.shields.io/badge/AppVersion-v0.1.1-informational?style=flat-square)
44

55
A Helm chart for istio-csr
66

@@ -21,6 +21,7 @@ A Helm chart for istio-csr
2121
| Key | Type | Default | Description |
2222
|-----|------|---------|-------------|
2323
| agent.certificateDuration | string | `"24h"` | Requested duration of gRPC serving certificate. Will be automatically renewed. |
24+
| agent.clusterID | string | `"Kubernetes"` | The istio cluster ID to verify incoming CSRs. |
2425
| agent.logLevel | int | `1` | Verbosity of istio-csr logging. |
2526
| agent.readinessProbe.path | string | `"/readyz"` | Path to expose istio-csr HTTP readiness probe on default network interface. |
2627
| agent.readinessProbe.port | int | `6060` | Container port to expose istio-csr HTTP readiness probe on default network interface. |
@@ -36,7 +37,7 @@ A Helm chart for istio-csr
3637
| 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. |
3738
| image.pullPolicy | string | `"IfNotPresent"` | Kubernetes imagePullPolicy on Deployment. |
3839
| 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+
| image.tag | string | `"v0.1.1"` | Target image version tag. |
4041
| replicaCount | int | `1` | Number of replicas of istio-csr to run. |
4142
| resources | object | `{}` | |
4243
| service.port | int | `443` | Service port 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.1.0
8+
tag: v0.1.1
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.1.0}"
5+
ISTIO_AGENT_IMAGE="${CERT_MANAGER_ISTIO_AGENT_IMAGE:-localhost:5000/cert-manager-istio-csr:v0.1.1}"
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.1.0
5+
tag: v0.1.1
66
pullPolicy: Always
77

88
service:

0 commit comments

Comments
 (0)