123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- apiVersion: batch/v1
- kind: Job
- metadata:
- name: guix-latest-local-file
- annotations:
- # Setting spec.force to true will make Flux recreate the Job when any
- # immutable field is changed, forcing the Job to run every time the
- # container image tag changes.
- kustomize.toolkit.fluxcd.io/force: enabled
- spec:
- backoffLimit: 0
- template:
- spec:
- hostNetwork: true
- hostPID: true
- nodeSelector:
- kubernetes.io/hostname: kube1
- restartPolicy: Never
- containers:
- - command:
- - nsenter
- - --target
- - "1"
- - --mount
- - --uts
- - --ipc
- - --net
- - --pid
- - --no-fork
- - sh
- - -l
- - -c
- - sudo --chdir=$WORKSPACE --user=oleg --login bash -ic 'make dotfiles/channels-current-local-file.scm'
- env:
- - name: WORKSPACE
- value: /home/oleg/.local/share/chezmoi
- image: docker-registry.wugi.info/library/alpine
- name: refresh
- resources:
- limits:
- cpu: 8000m
- memory: 4096Mi
- requests:
- cpu: 1000m
- memory: 512Mi
- securityContext:
- privileged: true
|