Files define where to look for potential updates. Excludes overrule includes.
# .git-ops-update.yaml
files:
includes:
- '\.yaml$'
excludes:
- '\.generated\.yaml$'
- '\/system\/.*\.yaml$'
Registries define sources where you can lookup version numbers for individual resources.
# .git-ops-update.yaml
registries:
my-docker-registry:
interval: 1h
docker:
url: https://registry-1.docker.io
credentials:
username: user
password: pass
# .git-ops-update.yaml
registries:
my-helm-registry:
interval: 1h
helm:
url: https://helm.nginx.com/stable
credentials:
username: user
password: pass
Policies define how you would select and compare different potential new versions of your resources.
# .git-ops-update.yaml
policies:
my-semver-policy:
extracts:
- type: semver
my-ubuntu-specific-policy:
pattern: '^(?P<year>\d+)\.(?P<month>\d+)$'
extracts:
- type: numeric
value: '<year>'
- type: numeric
value: '<month>'
In order for this tool to know where to update version numbers you have to annotate the relevant places
# deployment.yaml
apiVersion: v1
kind: Pod
metadata:
name: ubuntu
spec:
containers:
- name: ubuntu
image: ubuntu:18.04 # git-ops-update {"registry":"my-docker-registry","resource":"library/ubuntu","policy":"my-ubuntu-policy","format":"docker-image","action":"push"}
Every value in your configuration can be overwritten by an environment variable, that resembles the path to the value in uppercase letters and with an _
instead of .
or -
. For example:
# .git-ops-update.yaml
registries:
my-docker-policy:
type: docker
interval: 1h
url: https://registry-1.docker.io
credentials:
username: ${DOCKER_USERNAME}
password: ${DOCKER_PASSWORD}
export DOCKER_USERNAME=my-user
export DOCKER_PASSWORD=my-pass
git-ops-update
# .github/workflows/update.yml
name: update
on:
schedule:
- cron: '0 2 * * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: airfocusio/git-ops-update/setup@main
- run: git-ops-update
cd my-git-directory
docker pull ghcr.io/airfocusio/git-ops-update:latest
docker run --rm -v $PWD:/workdir ghcr.io/airfocusio/git-ops-update:latest