Refactor deployment/digital-ocean/https/README.md

This commit is contained in:
Wolfgang Huß 2020-12-10 09:54:18 +01:00
parent 3b872145a8
commit 0ffba54fde

View File

@ -1,10 +1,24 @@
# Setup Ingress and HTTPS # Setup Ingress and HTTPS
{% tabs %}
{% tab title="Helm 3" %}
Follow [this quick start guide](https://cert-manager.io/docs/installation/kubernetes/) and install certmanager via Helm 3:
## … Via Kubernetes Directly
```bash
$ kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.1.0/cert-manager.yaml
```
{% endtab %}
{% tab title="Helm 2" %}
{% hint style="info" %} {% hint style="info" %}
REMOVED: Tiller is [removed](https://helm.sh/docs/faq/#removal-of-tiller) on Helm 3. We investigate a solution … CAUTION: Tiller on Helm 2 is [removed](https://helm.sh/docs/faq/#removal-of-tiller) on Helm 3, because of savety issues. So we recomment Helm 3.
{% endhint %} {% endhint %}
Follow [this quick start guide](https://docs.cert-manager.io/en/latest/tutorials/acme/quick-start/index.html) and install certmanager via helm and tiller: Follow [this quick start guide](https://docs.cert-manager.io/en/latest/tutorials/acme/quick-start/index.html) and install certmanager via Helm 2 and tiller:
[This resource was also helpful](https://docs.cert-manager.io/en/latest/getting-started/install/kubernetes.html#installing-with-helm) [This resource was also helpful](https://docs.cert-manager.io/en/latest/getting-started/install/kubernetes.html#installing-with-helm)
```bash ```bash
@ -17,6 +31,9 @@ $ kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/relea
$ helm install --name cert-manager --namespace cert-manager --version v0.11.0 jetstack/cert-manager $ helm install --name cert-manager --namespace cert-manager --version v0.11.0 jetstack/cert-manager
``` ```
{% endtab %}
{% endtabs %}
## Create Letsencrypt Issuers and Ingress Services ## Create Letsencrypt Issuers and Ingress Services
Copy the configuration templates and change the file according to your needs. Copy the configuration templates and change the file according to your needs.