feature/bstein-dev-home #7

Merged
bstein merged 95 commits from feature/bstein-dev-home into main 2025-12-18 04:23:02 +00:00
Showing only changes of commit 1f98a5be12 - Show all commits

View File

@ -79,6 +79,21 @@ spec:
secretKeyRef: secretKeyRef:
name: jenkins-oidc name: jenkins-oidc
key: logoutUrl key: logoutUrl
customInitContainers:
- name: clean-jcasc-stale
image: alpine:3.20
imagePullPolicy: IfNotPresent
command:
- sh
- -c
- |
set -euo pipefail
rm -f /var/jenkins_home/casc_configs/*.yaml || true
securityContext:
runAsUser: 0
volumeMounts:
- name: jenkins-home
mountPath: /var/jenkins_home
initScripts: initScripts:
oidc.groovy: | oidc.groovy: |
import hudson.util.Secret import hudson.util.Secret