Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Versions of components updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzickap committed Oct 29, 2019
1 parent 97d50d6 commit 23ea299
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/part-02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Helm Architecture:
Install [Helm](https://helm.sh/) binary:

```bash
curl -s https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash -s -- --version v2.14.2
curl -s https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash -s -- --version v2.14.3
```

Output:
Expand Down
10 changes: 5 additions & 5 deletions docs/part-03/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cert-manager architecture:
Install the CRDs resources separately:

```bash
kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.9/deploy/manifests/00-crds.yaml
kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.10/deploy/manifests/00-crds.yaml
```

Output:
Expand Down Expand Up @@ -48,7 +48,7 @@ Install the cert-manager Helm chart:

```bash
helm repo add jetstack https://charts.jetstack.io
helm install --name cert-manager --namespace cert-manager --wait jetstack/cert-manager --version v0.9.0
helm install --name cert-manager --namespace cert-manager --wait jetstack/cert-manager --version v0.10.0
```

Output:
Expand Down Expand Up @@ -246,7 +246,7 @@ spec:
It's necessary to copy the wildcard certificate across all "future" namespaces
and that's the reason why [kubed](https://github.com/appscode/kubed) needs to be
installed (for now).
[kubed](https://github.com/appscode/kubed) can [synchronize ConfigMaps/Secrets](https://appscode.com/products/kubed/0.9.0/guides/config-syncer/)
[kubed](https://github.com/appscode/kubed) can [synchronize ConfigMaps/Secrets](https://appscode.com/products/kubed/0.11.0/guides/config-syncer/)
across Kubernetes namespaces/clusters.

Kubed - synchronize secret diagram:
Expand All @@ -268,7 +268,7 @@ Output:
Install kubed:

```bash
helm install appscode/kubed --name kubed --version 0.10.0 --namespace kube-system --wait \
helm install appscode/kubed --name kubed --version 0.11.0 --namespace kube-system --wait \
--set config.clusterName=my_k8s_cluster \
--set apiserver.enabled=false
```
Expand Down Expand Up @@ -346,7 +346,7 @@ secret/ingress-cert-production annotated
Install nginx-ingress which will also create a new loadbalancer:

```bash
helm install stable/nginx-ingress --wait --name nginx-ingress --namespace nginx-ingress-system --version 1.6.11 \
helm install stable/nginx-ingress --wait --name nginx-ingress --namespace nginx-ingress-system --version 1.24.3 \
--set rbac.create=true \
--set controller.extraArgs.default-ssl-certificate=cert-manager/ingress-cert-${LETSENCRYPT_ENVIRONMENT}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/part-04/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Install Harbor using Helm:

```bash
helm ls | grep harbor || \
helm install --wait --name harbor --namespace harbor-system harbor/harbor --version v1.1.1 \
helm install --wait --name harbor --namespace harbor-system harbor/harbor --version v1.2.1 \
--set expose.ingress.hosts.core=harbor.${MY_DOMAIN} \
--set expose.ingress.hosts.notary=notary.${MY_DOMAIN} \
--set expose.tls.secretName=ingress-cert-${LETSENCRYPT_ENVIRONMENT} \
Expand Down
2 changes: 1 addition & 1 deletion docs/part-09/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Remove cert-manager:

```bash
helm delete --purge cert-manager
kubectl delete -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.8/deploy/manifests/00-crds.yaml --wait=false
kubectl delete -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.11/deploy/manifests/00-crds.yaml --wait=false
kubectl delete namespace cert-manager --wait=false
```

Expand Down

0 comments on commit 23ea299

Please sign in to comment.