- Add HTML comment for hiring pipeline - Configure Helm chart for Kubernetes deployment - Set up ingress for resume.caffeinetux.com - Configure Harbor registry at images.caffeinetux.com - Add Flux CD manifests for GitOps deployment - Update CI workflow for Harbor integration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
853 B
YAML
37 lines
853 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: resume-site
|
|
namespace: default
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: ./helm
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: resume-site
|
|
namespace: flux-system
|
|
interval: 1m
|
|
values:
|
|
replicaCount: 2
|
|
image:
|
|
repository: images.caffeinetux.com/production/resume-site
|
|
pullPolicy: IfNotPresent
|
|
tag: "latest"
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
hosts:
|
|
- host: resume.caffeinetux.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: resume-tls
|
|
hosts:
|
|
- resume.caffeinetux.com
|