mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
750 B
YAML
31 lines
750 B
YAML
apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: credentials-sync
|
|
namespace: flux-system
|
|
spec:
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
initContainers:
|
|
- image: ghcr.io/fluxcd/flux-cli:v0.17.2
|
|
name: copy-kubectl
|
|
# it's okay to do this because kubectl is a statically linked binary
|
|
command:
|
|
- sh
|
|
- -ceu
|
|
- cp $(which kubectl) /kbin/
|
|
resources: {}
|
|
volumeMounts:
|
|
- name: kbin
|
|
mountPath: /kbin
|
|
containers:
|
|
- name: sync
|
|
volumeMounts:
|
|
- name: kbin
|
|
mountPath: /kbin
|
|
volumes:
|
|
- name: kbin
|
|
emptyDir: {}
|