Author SHA1 Message Date
Story Crater Bot 6212c3b717 fix: update GitHub URLs to use Riotpiaole and forgejo.riotpiao.com
CI / CI (pull_request) Successful in 5m36s
- Change public GitHub from github.com/rockliang to github.com/Riotpiaole
- Change private GitHub to forgejo.riotpiao.com for all references
- Update both desktop and mobile contact sections
2026-09-08 19:41:57 -07:00
Story Crater Bot 8ed3923c18 fix: use ksops generator pattern for SOPS-encrypted secrets
- Remove configmap.enc.yaml from resources (blocked kustomize parsing)
- Create secret-generator.yaml with ksops exec plugin config
- ksops decrypts secrets before kustomize reads them
- Allows Image Updater to safely edit images section
- Fixes: ArgoCD repo-server now properly decrypts secrets via ksops plugin

Pattern mirrors homelab/k8s/argocd/secrets/ for consistency
2026-09-07 17:54:34 -07:00
Story Crater Bot 16d61c7dea merge: CI/CD improvements and Image Updater fixes from fix/unified-ci
CI / CI (push) Successful in 5m46s
- Upgrade pnpm to v12.3.4 for reproducible builds
- Skip build scripts during pnpm install
- Enable ArgoCD Image Updater annotations
- Add images section to kustomization for Image Updater
- Remove sops field to unblock vanilla kustomize parsing

Closes PR #4
2026-09-07 17:51:08 -07:00
rock 6c415c6382 ci: unified workflow - single job, DOCKER_HOST, build+push on all events (#4)
CI / CI (push) Successful in 5m23s
Unify CI/CD workflow and fix pnpm v12 compatibility issues. This PR addresses the ERR_PNPM_MINIMUM_RELEASE_AGE_VIOLATION failure that was blocking builds on fresh package releases.
2026-09-08 00:35:53 +00:00
3 changed files with 27 additions and 12 deletions
+8 -8
View File
@@ -117,7 +117,7 @@ export default function Header() {
</div>
<div className="flex items-center justify-between">
<a
href="https://github.com/rockliang"
href="https://github.com/Riotpiaole"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-gray-700 dark:text-gray-300 hover:text-blue-600 dark:hover:text-blue-400 flex-1"
@@ -125,7 +125,7 @@ export default function Header() {
{t.header.contact.github}
</a>
<button
onClick={() => handleCopy('https://github.com/rockliang', 'GitHub')}
onClick={() => handleCopy('https://github.com/Riotpiaole', 'GitHub')}
className="text-xs px-2 py-1 rounded bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400 hover:bg-blue-100 dark:hover:bg-blue-900"
>
{copied === 'GitHub' ? '✓' : t.header.contact.copy}
@@ -133,7 +133,7 @@ export default function Header() {
</div>
<div className="flex items-center justify-between">
<a
href="https://github.com/rockliang"
href="https://forgejo.riotpiao.com"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-gray-700 dark:text-gray-300 hover:text-blue-600 dark:hover:text-blue-400 flex-1"
@@ -141,7 +141,7 @@ export default function Header() {
{t.header.contact.privateGithub}
</a>
<button
onClick={() => handleCopy('https://github.com/rockliang', 'PrivateGithub')}
onClick={() => handleCopy('https://forgejo.riotpiao.com', 'PrivateGithub')}
className="text-xs px-2 py-1 rounded bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400 hover:bg-blue-100 dark:hover:bg-blue-900"
>
{copied === 'PrivateGithub' ? '✓' : t.header.contact.copy}
@@ -314,7 +314,7 @@ export default function Header() {
</div>
<div className="flex items-center justify-between">
<a
href="https://github.com/rockliang"
href="https://github.com/Riotpiaole"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-gray-700 dark:text-gray-300 hover:text-blue-600 flex-1"
@@ -322,7 +322,7 @@ export default function Header() {
{t.header.contact.github}
</a>
<button
onClick={() => handleCopy('https://github.com/rockliang', 'GitHub')}
onClick={() => handleCopy('https://github.com/Riotpiaole', 'GitHub')}
className="text-xs px-2 py-1 rounded bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-400 hover:bg-blue-100 dark:hover:bg-blue-900"
>
{copied === 'GitHub' ? '✓' : t.header.contact.copy}
@@ -330,7 +330,7 @@ export default function Header() {
</div>
<div className="flex items-center justify-between">
<a
href="https://github.com/rockliang"
href="https://forgejo.riotpiao.com"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-gray-700 dark:text-gray-300 hover:text-blue-600 flex-1"
@@ -338,7 +338,7 @@ export default function Header() {
{t.header.contact.privateGithub}
</a>
<button
onClick={() => handleCopy('https://github.com/rockliang', 'PrivateGithub')}
onClick={() => handleCopy('https://forgejo.riotpiao.com', 'PrivateGithub')}
className="text-xs px-2 py-1 rounded bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-400 hover:bg-blue-100 dark:hover:bg-blue-900"
>
{copied === 'PrivateGithub' ? '✓' : t.header.contact.copy}
+9 -4
View File
@@ -1,17 +1,22 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: portfolio
resources:
- namespace.yaml
- configmap.enc.yaml
- deployment.yaml
- service.yaml
- ingress.yaml
# SOPS-encrypted secrets via ksops generator (ArgoCD repo-server plugin)
# ksops intercepts encrypted files, decrypts them, returns valid resources
generatorOptions:
disableNameSuffixHash: true
generators:
- secret-generator.yaml
# ArgoCD Image Updater configuration - for tag updates
images:
- name: forgejo.riotpiao.com/rock/portfolio
newTag: latest
# Note: SOPS decryption is handled by ArgoCD repo-server plugin,
# not via kustomization.yaml, to allow Image Updater to parse this file
@@ -0,0 +1,10 @@
apiVersion: viaduct.ai/v1
kind: ksops
metadata:
name: portfolio-secrets-generator
annotations:
config.kubernetes.io/function: |
exec:
path: ksops
files:
- configmap.enc.yaml