2022-08-16 09:40:54 +00:00
|
|
|
# Workflow
|
|
|
|
|
|
|
|
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-02-12 05:56:23 +00:00
|
|
|
Adding to `applications/`: `kubectl apply -f newapp.yaml`
|
2022-08-16 09:40:54 +00:00
|
|
|
|
|
|
|
# Deployment
|
|
|
|
|
|
|
|
To deploy ArgoCD:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
helm repo add argo-cd https://argoproj.github.io/argo-helm
|
|
|
|
kubectl create secret -n argocd generic argocd-secret # Initialize empty secret for sessions
|
|
|
|
helm template -n argocd --release-name k6 argo-cd/argo-cd --include-crds -f values.yaml > argocd.yml
|
2023-07-28 09:21:50 +00:00
|
|
|
kubectl apply -f argocd.yml -f application-extras.yml -n argocd
|
2022-08-16 09:40:54 +00:00
|
|
|
kubectl -n argocd rollout restart deployment/k6-argocd-redis
|
|
|
|
kubectl -n argocd rollout restart deployment/k6-argocd-repo-server
|
|
|
|
kubectl -n argocd rollout restart deployment/k6-argocd-server
|
|
|
|
kubectl -n argocd rollout restart deployment/k6-argocd-notifications-controller
|
|
|
|
kubectl -n argocd rollout restart statefulset/k6-argocd-application-controller
|
2023-07-28 09:21:50 +00:00
|
|
|
kubectl label -n argocd secret oidc-client-argocd-owner-secrets app.kubernetes.io/part-of=argocd
|
2022-08-16 09:40:54 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
# Setting up Git secrets
|
|
|
|
|
|
|
|
Generate SSH key to access Gitea:
|
|
|
|
|
|
|
|
```
|
|
|
|
ssh-keygen -t ecdsa -f id_ecdsa -C argocd.k-space.ee -P ''
|
|
|
|
kubectl -n argocd create secret generic gitea-kube \
|
|
|
|
--from-literal=type=git \
|
|
|
|
--from-literal=url=git@git.k-space.ee:k-space/kube \
|
|
|
|
--from-file=sshPrivateKey=id_ecdsa
|
|
|
|
kubectl -n argocd create secret generic gitea-kube-staging \
|
|
|
|
--from-literal=type=git \
|
|
|
|
--from-literal=url=git@git.k-space.ee:k-space/kube-staging \
|
|
|
|
--from-file=sshPrivateKey=id_ecdsa
|
2022-09-17 05:06:19 +00:00
|
|
|
kubectl -n argocd create secret generic gitea-kube-members \
|
|
|
|
--from-literal=type=git \
|
|
|
|
--from-literal=url=git@git.k-space.ee:k-space/kube-members \
|
|
|
|
--from-file=sshPrivateKey=id_ecdsa
|
2022-08-16 09:40:54 +00:00
|
|
|
kubectl label -n argocd secret gitea-kube argocd.argoproj.io/secret-type=repository
|
|
|
|
kubectl label -n argocd secret gitea-kube-staging argocd.argoproj.io/secret-type=repository
|
2022-09-17 05:06:19 +00:00
|
|
|
kubectl label -n argocd secret gitea-kube-members argocd.argoproj.io/secret-type=repository
|
2022-08-16 09:40:54 +00:00
|
|
|
rm -fv id_ecdsa
|
|
|
|
```
|
|
|
|
|
|
|
|
Have Gitea admin reset password for user `argocd` and log in with that account.
|
|
|
|
Add the SSH key for user `argocd` from file `id_ecdsa.pub`.
|
|
|
|
Delete any other SSH keys associated with Gitea user `argocd`.
|
2023-08-29 06:29:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Managing applications
|
|
|
|
|
|
|
|
To update apps:
|
|
|
|
|
|
|
|
```
|
|
|
|
for j in asterisk bind camtiler drone drone-execution etherpad freescout gitea grafana hackerspace nextcloud nyancat rosdump traefik wiki wildduck woodpecker; do
|
|
|
|
cat << EOF >> applications/$j.yaml
|
|
|
|
---
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
kind: Application
|
|
|
|
metadata:
|
|
|
|
name: $j
|
|
|
|
namespace: argocd
|
|
|
|
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
|
|
|
|
syncPolicy: {}
|
|
|
|
EOF
|
|
|
|
done
|
|
|
|
find applications -name "*.yaml" -exec kubectl apply -n argocd -f {} \;
|
|
|
|
```
|