Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gerrited authored Dec 30, 2023
1 parent 177eb60 commit 240d58a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Tools used
| Name | Description |
| --- | --- |
| :--- | :--- |
| [k3s](https://www.google.com) | K8s Distribution of my Raspberry Cluster ([more info](https://gerrit.codes/posts/2022/01/raspberry-pi-cluster-mit-k3s/)) |
| [ArgoCD](https://argoproj.github.io/) | GitOps Tool to manage Kubernetes Apps |
| [Cloudflare](https://www.cloudflare.com/) | DNS and Tunnel for the local K8s Cluster ([more info](https://gerrit.codes/posts/2022/01/k8s-tunnel-cloudflare/)) |
Expand All @@ -15,19 +15,19 @@ The cloudflare configuration of DNS records and tunnels are made with terraform.

### Install argocd

```
```bash
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
```

### Add this repo as argocd app
Option A
```
```bash
kubectl apply -f init.yaml
```

Option B
```
```bash
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
kubectl port-forward svc/argocd-server -n argocd 8080:80
argocd login localhost:8080
Expand All @@ -37,7 +37,7 @@ argocd app create k3s-argocd --repo https://github.com/gerrited/k3s-cluster.git
### Use sealed secrets
Add new argocd app

```
```bash
kubectl apply -f sealed-secrets.yaml
```

Expand Down

0 comments on commit 240d58a

Please sign in to comment.