c85c0068a2
- Replace all datetime.utcnow() with datetime.now(tz=timezone.utc) across 8 files - Fix 12 failing tests to match current implementation behavior - Fix pytest_plugins in non-top-level conftest (moved to root conftest.py) - Auto-fix 189 lint issues (import sorting, unused imports) - Add CI/CD pipeline infrastructure (ARC, ArgoCD, Kargo manifests) - Add values-beta.yaml and values-paper.yaml for staged deployments - Update GitHub Actions workflow to use self-hosted-gremlin runners - Add integration-test job to CI pipeline Result: 1596 passed, 0 failed, 0 warnings
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
# Helm values for ARC runner scale set
|
|
# Chart: oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set
|
|
# Namespace: arc-system
|
|
|
|
# GitHub repository to register the runner against
|
|
githubConfigUrl: "https://github.com/celesrenata/stonks-oracle"
|
|
|
|
# Runner label used in workflow runs-on
|
|
runnerScaleSetName: "self-hosted-gremlin"
|
|
|
|
# Authentication — GitHub PAT injected at install time via --set
|
|
# runmefirst.sh reads /run/secrets/github_token and passes it here
|
|
githubConfigSecret:
|
|
github_token: "PLACEHOLDER"
|
|
|
|
# Kubernetes container mode — workflow steps run as separate containers (no DinD)
|
|
containerMode:
|
|
type: kubernetes
|
|
kubernetesModeWorkVolumeClaim:
|
|
accessModes: ["ReadWriteOnce"]
|
|
storageClassName: "local-path"
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
|
|
# Ephemeral runners — each job gets a clean pod
|
|
ephemeral: true
|
|
|
|
# Resource limits per runner pod
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: runner
|
|
resources:
|
|
limits:
|
|
cpu: "2"
|
|
memory: 4Gi
|
|
requests:
|
|
cpu: "1"
|
|
memory: 2Gi
|