readme and auto image updater wip

This commit is contained in:
marcel-dempers 2023-03-11 23:09:53 +11:00
parent 8854b27c20
commit 1795b32d54
2 changed files with 10 additions and 1 deletions

View File

@ -240,6 +240,13 @@ kubectl -n default apply -f repositories/config/apps/example-app-2/imagereposito
kubectl -n default apply -f repositories/config/apps/example-app-2/imagepolicy.yaml kubectl -n default apply -f repositories/config/apps/example-app-2/imagepolicy.yaml
kubectl -n default apply -f repositories/config/apps/example-app-2/imageupdateautomation.yaml kubectl -n default apply -f repositories/config/apps/example-app-2/imageupdateautomation.yaml
# we will also need to provide authentication for our git repo
flux create secret git example-app-2-github --url https://github.com/marcel-dempers/docker-development-youtube-series --username '' --password '' --namespace default
```
There are a number of ways to authenticate with [GitRepositories](https://fluxcd.io/flux/components/source/gitrepositories/#secret-reference)
```
kubectl describe imagepolicy example-app-2 kubectl describe imagepolicy example-app-2
kubectl describe imagerepository example-app-2 kubectl describe imagerepository example-app-2
kubectl describe imageupdateautomation example-app-2 kubectl describe imageupdateautomation example-app-2

View File

@ -8,3 +8,5 @@ spec:
ref: ref:
branch: fluxcd-2022 branch: fluxcd-2022
url: https://github.com/marcel-dempers/docker-development-youtube-series url: https://github.com/marcel-dempers/docker-development-youtube-series
secretRef:
name: example-app-2-github