mirror of
https://github.com/holos-run/holos.git
synced 2026-03-19 08:44:58 +00:00
Add Tilt back from holos server Note with this patch the ec-creds.yaml file needs to be applied to the provisioner and an external secret used to sync the image pull creds. With this patch the dev instance is accessible behind the auth proxy. pgAdmin also works from the Tilt UI. https://jeff.holos.dev.k2.ois.run/app/start
10 lines
226 B
Bash
Executable File
10 lines
226 B
Bash
Executable File
#! /bin/bash
|
|
#
|
|
set -euo pipefail
|
|
issue="$(git rev-parse --abbrev-ref HEAD | tr -d -c 0-9)"
|
|
if [[ -z $issue ]]; then
|
|
echo "could not extract issue number from branch name" >&2
|
|
exit 1
|
|
fi
|
|
exec gh issue view --comments $issue
|