Files
static-site-helpers/clusterprism_halloween_values.yaml
David Jeffers a67584dc01
Some checks failed
continuous-integration/drone/push Build is failing
Linting fixes
2025-03-23 13:38:13 -04:00

49 lines
1.1 KiB
YAML

---
podSecurityContext:
runAsUser: 2000
runAsGroup: 2000
fsGroup: 2000
fsGroupChangePolicy: "OnRootMismatch"
runAsNonRoot: true
securityContext:
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: false
capabilities:
drop:
- ALL
seccompProfile:
type: "RuntimeDefault"
ingress:
host: halloween.dajeffers.com
ingressClassName: nginx
tlsEnabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-cloudflare-prod
resources:
requests:
cpu: null
memory: 200Mi
limits:
cpu: 200m
memory: 200Mi
# values to build and deploy static sites
gitCloneUrl: ssh://git@git.sadmin.pro:2222/DaJeffers/halloween.dajeffers.com.git
buildScript: |
# !/usr/bin/env bash
# pre -reqs
apt-get update && apt-get install -y wget
# Setting up Hugo
# yamllint disable-line rule:line-length
wget https://github.com/gohugoio/hugo/releases/download/v0.145.0/hugo_0.145.0_linux-arm64.tar.gz &&
tar -xzf hugo_0.145.0_linux-arm64.tar.gz &&
chmod +x hugo
./hugo
vars:
TZ: 'America/New_York'