1
0
Fork 0

Compare commits

..

4 Commits

Author SHA1 Message Date
Dustin 5d47d83ea5 svc: Set venv path for Pyright
dustin/hudctrl/pipeline/head This commit looks good Details
Need to set the path to the Python venv for Pyright in order to get
valid diagnostics in Neovim.
2022-08-02 21:42:51 -05:00
Dustin 2bb1c6a297 svc: Update to aiomarionette 0.0.3
Older versions hard-coded using the `AF_INET6` address family, even for
IPv4 addresses.  While this "worked on my machine," it did not work when
the application was deployed to the Kubernetes cluster.  Either cri-o or
the Debian-based *python* container image must disable this somehow.
2022-08-02 21:42:51 -05:00
Dustin 9b9736ab8b svc: api: Get URLs file path from env var
The `HUDCTRL_URLS_FILE` environment variable can be used to specify the
location to the `urls.json` file.
2022-08-02 21:42:51 -05:00
Dustin 333907913d ci: Build container image
This image will be used to deploy the application on the Kubernetes
cluster.
2022-08-02 21:42:51 -05:00
2 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,3 @@
tag_name() {
echo "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g' -e 's/^[.-]/_/'
}
push() {
tag=$(tag_name $1)
podman push hudctrl:${BUILD_TAG} registry.pyrocufflink.blue/hudctrl:${tag}
}

View File

@ -2,6 +2,11 @@
. ci/container-common.sh
push() {
tag=$(tag_name $1)
podman push hudctrl:$(tag_name ${BUILD_TAG}) registry.pyrocufflink.blue/hudctrl:${tag}
}
push ${BUILD_TAG}
push ${BRANCH_NAME}
if [ "${BRANCH_NAME}" = master ]; then