Remove old deployment manifests. Update RBAC disable advice.

This commit is contained in:
James Munnelly 2018-02-27 08:34:43 +00:00
parent 8022e6ab93
commit b98f3e64cb
4 changed files with 2 additions and 47 deletions

View File

@ -1,7 +0,0 @@
apiVersion: certmanager.k8s.io/v1alpha1
kind: Issuer
metadata:
name: ca-issuer
spec:
ca:
secretName: ca-key-pair

View File

@ -1,23 +0,0 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: certificates.certmanager.k8s.io
spec:
group: certmanager.k8s.io
version: v1alpha1
names:
kind: Certificate
plural: certificates
scope: Namespaced # Can also be cluster level using "Cluster"
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: issuers.certmanager.k8s.io
spec:
group: certmanager.k8s.io
version: v1alpha1
names:
kind: Issuer
plural: issuers
scope: Namespaced # Can also be cluster level using "Cluster"

View File

@ -1,15 +0,0 @@
apiVersion: extensions/v1beta1
kind: ThirdPartyResource
metadata:
name: certificate.certmanager.k8s.io
description: "A specification for a cert-manager certificate"
versions:
- name: v1alpha1
---
apiVersion: extensions/v1beta1
kind: ThirdPartyResource
metadata:
name: issuer.certmanager.k8s.io
description: "A specification for a cert-manager issuer"
versions:
- name: v1alpha1

View File

@ -30,7 +30,7 @@ $ helm install \
stable/cert-manager
```
> **NOTE**: if your cluster does not use RBAC (Role Based Access Control), you should add `--set rbac.enabled=false` when running your `helm install` command.
> **NOTE**: if your cluster does not use RBAC (Role Based Access Control), you should add `--set rbac.create=false` when running your `helm install` command.
The default cert-manager configuration is good for the majority of users, but a
full list of the available options can be found in the [Helm chart README](https://github.com/kubernetes/charts/blob/master/stable/cert-manager/README.md).
@ -41,7 +41,7 @@ issue certificates.
## Addendum
* If your cluster does not use RBAC, you should add `--set rbac.enabled=false` to
* If your cluster does not use RBAC, you should add `--set rbac.create=false` to
your `helm install` command. All RBAC related resources will not be created in
this instance.