2022-08-16 09:40:54 +00:00
Most applications in our Kubernetes cluster are managed by ArgoCD.
2023-08-29 06:29:36 +00:00
Most notably operators are NOT managed by ArgoCD.
2022-08-16 09:40:54 +00:00
2024-12-15 04:34:47 +00:00
## Managing applications
Update apps (see TODO below):
2023-08-29 06:29:36 +00:00
```
2024-08-03 00:34:56 +00:00
for j in asterisk bind camtiler etherpad freescout gitea grafana hackerspace nextcloud nyancat rosdump traefik wiki wildduck woodpecker; do
2023-08-29 06:29:36 +00:00
cat < < EOF > > applications/$j.yaml
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: $j
namespace: argocd
2024-12-15 01:43:40 +00:00
annotations:
# Works with only Kustomize and Helm. Kustomize is easy, see https://github.com/argoproj-labs/argocd-image-updater/tree/master/manifests/base for an example.
argocd-image-updater.argoproj.io/image-list: TODO:^2 # semver 2.*.*
argocd-image-updater.argoproj.io/write-back-method: git
2023-08-29 06:29:36 +00:00
spec:
project: k-space.ee
source:
repoURL: 'git@git.k-space.ee:k-space/kube.git'
path: $j
targetRevision: HEAD
destination:
server: 'https://kubernetes.default.svc'
namespace: $j
2024-08-03 00:30:27 +00:00
syncPolicy:
automated:
prune: true
syncOptions:
- CreateNamespace=true
2023-08-29 06:29:36 +00:00
EOF
done
find applications -name "*.yaml" -exec kubectl apply -n argocd -f {} \;
```
2024-12-15 04:34:47 +00:00
### Repository secrets
1. Generate keys locally with `ssh-keygen -f argo`
2. Add `argo.pub` in `git.k-space.ee/<your>/<repo>` → Settings → Deploy keys
3. Add `argo` (private key) at https://argocd.k-space.ee/settings/repos along with referenced repo.
## Argo Deployment
To deploy ArgoCD itself:
```bash
helm repo add argo-cd https://argoproj.github.io/argo-helm
kubectl create secret -n argocd generic argocd-secret # Empty secret for sessions
helm template -n argocd --release-name k6 argo-cd/argo-cd --include-crds -f values.yaml > argocd.yml
kubectl apply -f argocd.yml -f application-extras.yml -f redis.yaml -f monitoring.yml -n argocd
kubectl label -n argocd secret oidc-client-argocd-owner-secrets app.kubernetes.io/part-of=argocd
kubectl -n argocd rollout restart deployment/k6-argocd-redis deployment/k6-argocd-repo-server deployment/k6-argocd-server deployment/k6-argocd-notifications-controller statefulset/k6-argocd-application-controller
```