This commit is contained in:
2024-02-23 13:48:07 +01:00
parent 08e71d69cd
commit 818a21befc
28 changed files with 948 additions and 896 deletions

View File

@@ -0,0 +1,16 @@
# Source: server/templates/secret-check-job.yaml
apiVersion: batch/v1
kind: Job
metadata:
name: pre-install-agent-secret-check
annotations:
"helm.sh/hook": pre-install
spec:
template:
spec:
containers:
- name: check-agent-secret
image: finalgene/openssh:9
command: ["openssl"]
args: ["rand", "-hex", "32"]
restartPolicy: OnFailure