Skip to content

Commit

Permalink
Bump version strings for v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: James Munnelly <james@munnelly.eu>
  • Loading branch information
munnerz committed Oct 9, 2019
1 parent a1097e9 commit 941b27b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions deploy/charts/cert-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The following table lists the configurable parameters of the cert-manager chart
| `global.podSecurityPolicy.enabled` | If `true`, create and use PodSecurityPolicy (includes sub-charts) | `false` |
| `global.leaderElection.namespace` | Override the namespace used to store the ConfigMap for leader election | `kube-system` |
| `image.repository` | Image repository | `quay.io/jetstack/cert-manager-controller` |
| `image.tag` | Image tag | `v0.11.0-beta.0` |
| `image.tag` | Image tag | `v0.11.0` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `replicaCount` | Number of cert-manager replicas | `1` |
| `clusterResourceNamespace` | Override the namespace used to store DNS provider credentials etc. for ClusterIssuer resources | Same namespace as cert-manager pod |
Expand Down Expand Up @@ -124,7 +124,7 @@ The following table lists the configurable parameters of the cert-manager chart
| `webhook.affinity` | Node affinity for webhook pod assignment | `{}` |
| `webhook.tolerations` | Node tolerations for webhook pod assignment | `[]` |
| `webhook.image.repository` | Webhook image repository | `quay.io/jetstack/cert-manager-webhook` |
| `webhook.image.tag` | Webhook image tag | `v0.11.0-beta.0` |
| `webhook.image.tag` | Webhook image tag | `v0.11.0` |
| `webhook.image.pullPolicy` | Webhook image pull policy | `IfNotPresent` |
| `webhook.injectAPIServerCA` | if true, the apiserver's CABundle will be automatically injected into the ValidatingWebhookConfiguration resource | `true` |
| `cainjector.enabled` | Toggles whether the cainjector component should be installed (required for the webhook component to work) | `true` |
Expand All @@ -136,7 +136,7 @@ The following table lists the configurable parameters of the cert-manager chart
| `cainjector.affinity` | Node affinity for cainjector pod assignment | `{}` |
| `cainjector.tolerations` | Node tolerations for cainjector pod assignment | `[]` |
| `cainjector.image.repository` | cainjector image repository | `quay.io/jetstack/cert-manager-cainjector` |
| `cainjector.image.tag` | cainjector image tag | `v0.11.0-beta.0` |
| `cainjector.image.tag` | cainjector image tag | `v0.11.0` |
| `cainjector.image.pullPolicy` | cainjector image pull policy | `IfNotPresent` |

Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/install/kubernetes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ are included in a single YAML manifest file:
.. code-block:: shell
# Install the CustomResourceDefinitions and cert-manager itself
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager.yaml
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager.yaml
.. note::
If you are running kubectl v1.12 or below, you will need to add the
Expand Down Expand Up @@ -131,7 +131,7 @@ In order to install the Helm chart, you must run:
helm install \
--name cert-manager \
--namespace cert-manager \
--version v0.11.0-beta.0 \
--version v0.11.0 \
jetstack/cert-manager
The default cert-manager configuration is good for the majority of users, but a
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/install/openshift.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ are included in a single YAML manifest file:
.. code-block:: shell
# Install the CustomResourceDefinitions and cert-manager itself
oc apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager-openshift.yaml
oc apply --validate=false -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager-openshift.yaml
.. note::
The ``--validate=false`` flag is added to the ``oc apply`` command above
Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started/webhook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ To re-install cert-manager without the webhook, run:

.. code-block:: shell
kubectl delete -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager.yaml
kubectl delete -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager.yaml
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager-no-webhook.yaml
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager-no-webhook.yaml
Once you have re-installed cert-manager, you should then
:doc:`restore your configuration </tasks/backup-restore-crds>`.

.. _`cert-manager.yaml`: https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager.yaml
.. _`cert-manager-no-webhook.yaml`: https://github.com/jetstack/cert-manager/releases/download/v0.11.0-beta.0/cert-manager-no-webhook.yaml
.. _`cert-manager.yaml`: https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager.yaml
.. _`cert-manager-no-webhook.yaml`: https://github.com/jetstack/cert-manager/releases/download/v0.11.0/cert-manager-no-webhook.yaml
.. _`GKE docs`: https://cloud.google.com/kubernetes-engine/docs/how-to/private-clusters#add_firewall_rules
.. _`ValidatingWebhookConfiguration`: https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/

0 comments on commit 941b27b

Please sign in to comment.