I would like to inject some git config attributes into a KAS container.
The config is in
gitconfig.kas
[pack]
threads = 1
Seems that setting GITCONFIG_FILE to the path does not work.
Eventually I would expect to see the git config attribute when I start container shell and do a "git config -list". But I only see the kas default git config:
scripts/kas-container --git-credential-store ~/.git-credentials --runtime-args "-e ..." shell --update mykasconfig.yaml
builder@621c65a5519c:/build$git config --list
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=store --file=/var/kas/userdata/.git-credentials
user.name=kas User
user.email=
k...@example.comRegards, Chris