feat: k3s deploy
Some checks failed
/ deploy (push) Failing after 6s

This commit is contained in:
ange 2025-02-26 12:51:34 +00:00
parent 9ca9ea411b
commit 03ca2e37e5
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
5 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ jobs:
if [ "${{ gitea.ref_name }}" == prod ] && [ -n "$PROD_URL" ]; then
BASE_URL="$PROD_URL"
else
BASE_URL="${{ gitea.ref_name }}.$(tr / '\n' <<< "${{ gitea.repository }}" | tac | tr '\n' .)k8s.gmoker.com"
BASE_URL="${{ gitea.ref_name }}.$(tr / '\n' <<< "${{ gitea.repository }}" | tac | tr '\n' .)k3s.gmoker.com"
fi
cat <<EOF >> .env
BASE_URL="$BASE_URL"
@ -20,4 +20,4 @@ jobs:
- uses: actions/k8sdeploy@v1
with:
kubeconfig: "${{ secrets.K8S }}"
kubeconfig: "${{ secrets.K3S }}"

View File

@ -4,4 +4,4 @@ URL='https://raw.githubusercontent.com'
REPO='go-gitea/gitea'
TAG="release/v$(awk -F: '/^IMAGEAPP/{sub(".[0-9]+-rootless", ""); print $2}' .env)"
$EDITOR -d -c "wincmd l" -- "$URL/$REPO/$TAG/custom/conf/app.example.ini" config/app.ini
$EDITOR -d -- config/app.ini "$URL/$REPO/$TAG/custom/conf/app.example.ini"

View File

@ -8,11 +8,11 @@ function kapply() {
}; export -f kapply
function kcreatesec() {
kubectl create secret generic --save-config --dry-run=client -oyaml "$@" | kubectl apply -f-
kubectl create secret generic --dry-run=client -oyaml "$@" | kubectl replace -f-
}; export -f kcreatesec
function kcreatecm() {
kubectl create configmap --dry-run=client -oyaml "$@" | kubectl apply -f-
kubectl create configmap --dry-run=client -oyaml "$@" | kubectl replace -f-
}; export -f kcreatecm
function kgseckey() {

View File

@ -7,5 +7,5 @@ export NB_REPLICAS=1
. ./manifests/bin/deploy.sh
if [ "$GITHUB_REF_NAME" = prod ]; then
kapply prod/ssh.yaml
kapply prod/ports.yaml
fi