feat!: big breaking change set
All checks were successful
gitea-physics/pynam/pipeline/head This commit looks good

This commit is contained in:
2022-03-28 18:51:52 -05:00
parent e1e8c8490a
commit 6231ecc203
32 changed files with 1514 additions and 773 deletions

16
jenkins/ci-agent-pod.yaml Normal file
View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Pod
spec:
imagePullSecrets:
- name: regcreds
containers: # list of containers that you want present for your build, you can define a default container in the Jenkinsfile
- name: poetry
image: ghcr.io/dmallubhotla/poetry-image:1
command: ["tail", "-f", "/dev/null"] # this or any command that is bascially a noop is required, this is so that you don't overwrite the entrypoint of the base container
imagePullPolicy: Always # use cache or pull image for agent
resources: # limits the resources your build contaienr
requests:
memory: "2Gi"
cpu: "500m"
limits:
memory: "2Gi"