|
| 1 | +requests: |
| 2 | + memory: "1Gi" |
| 3 | + cpu: "1" |
| 4 | +limits: |
| 5 | + memory: "3Gi" |
| 6 | + cpu: "2" |
| 7 | +autoscaling: |
| 8 | + kind: "hpa" |
| 9 | +global: |
| 10 | + masterKey: BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB |
| 11 | + joinKey: EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE |
| 12 | + jfrogUrl: "http://artifactory-local:8082" |
| 13 | + versions: |
| 14 | + worker: 1.77.0 |
| 15 | + customVolumes: | |
| 16 | + - name: custom-volume-global |
| 17 | + emptyDir: |
| 18 | + sizeLimit: 100Mi |
| 19 | + customVolumeMounts: | |
| 20 | + - name: custom-volume-global |
| 21 | + mountPath: "/scriptsglobal" |
| 22 | + customInitContainers: | |
| 23 | + - name: "custom-init-global" |
| 24 | + image: {{ template "initContainers.image" $ }} |
| 25 | + imagePullPolicy: {{ $.Values.initContainers.image.pullPolicy | quote }} |
| 26 | + command: |
| 27 | + - 'sh' |
| 28 | + - '-c' |
| 29 | + - 'touch /opt/jfrog/worker/var/init-global' |
| 30 | + volumeMounts: |
| 31 | + - mountPath: "/opt/jfrog/worker/var" |
| 32 | + name: data |
| 33 | + customSidecarContainers: | |
| 34 | + - name: "sidecar-list-global" |
| 35 | + image: {{ template "initContainers.image" $ }} |
| 36 | + imagePullPolicy: {{ $.Values.initContainers.image.pullPolicy | quote }} |
| 37 | + securityContext: |
| 38 | + allowPrivilegeEscalation: false |
| 39 | + capabilities: |
| 40 | + drop: |
| 41 | + - NET_RAW |
| 42 | + command: ["sh","-c","echo 'Sidecar is running in global' >> /scriptsglobal/sidecar.txt; cat /scriptsglobal/sidecar.txt; while true; do sleep 30; done"] |
| 43 | + volumeMounts: |
| 44 | + - mountPath: "/scriptsglobal" |
| 45 | + name: custom-volume-global |
| 46 | + resources: |
| 47 | + requests: |
| 48 | + memory: "32Mi" |
| 49 | + cpu: "50m" |
| 50 | + limits: |
| 51 | + memory: "128Mi" |
| 52 | + cpu: "100m" |
| 53 | +
|
| 54 | +common: |
| 55 | + customVolumes: | |
| 56 | + - name: custom-volume-local |
| 57 | + emptyDir: |
| 58 | + sizeLimit: 100Mi |
| 59 | + customVolumeMounts: | |
| 60 | + - name: custom-volume-local |
| 61 | + mountPath: "/scriptslocal" |
| 62 | + customInitContainers: | |
| 63 | + - name: "custom-init-local" |
| 64 | + image: {{ template "initContainers.image" $ }} |
| 65 | + imagePullPolicy: {{ $.Values.initContainers.image.pullPolicy | quote }} |
| 66 | + command: |
| 67 | + - 'sh' |
| 68 | + - '-c' |
| 69 | + - 'touch /opt/jfrog/worker/var/init-local' |
| 70 | + volumeMounts: |
| 71 | + - mountPath: "/opt/jfrog/worker/var" |
| 72 | + name: data |
| 73 | + customSidecarContainers: | |
| 74 | + - name: "sidecar-list-local" |
| 75 | + image: {{ template "initContainers.image" $ }} |
| 76 | + imagePullPolicy: {{ $.Values.initContainers.image.pullPolicy | quote }} |
| 77 | + securityContext: |
| 78 | + allowPrivilegeEscalation: false |
| 79 | + capabilities: |
| 80 | + drop: |
| 81 | + - NET_RAW |
| 82 | + command: ["sh","-c","echo 'Sidecar is running in local' >> /scriptslocal/sidecar.txt; cat /scriptslocal/sidecar.txt; while true; do sleep 30; done"] |
| 83 | + volumeMounts: |
| 84 | + - mountPath: "/scriptslocal" |
| 85 | + name: custom-volume-local |
| 86 | + resources: |
| 87 | + requests: |
| 88 | + memory: "32Mi" |
| 89 | + cpu: "50m" |
| 90 | + limits: |
| 91 | + memory: "128Mi" |
| 92 | + cpu: "100m" |
| 93 | +
|
| 94 | +router: |
| 95 | + resources: |
| 96 | + requests: |
| 97 | + memory: "100Mi" |
| 98 | + cpu: "100m" |
| 99 | + limits: |
| 100 | + memory: "1Gi" |
| 101 | + cpu: "1" |
| 102 | + |
| 103 | +observability: |
| 104 | + resources: |
| 105 | + requests: |
| 106 | + memory: "100Mi" |
| 107 | + cpu: "100m" |
| 108 | + limits: |
| 109 | + memory: "1Gi" |
| 110 | + cpu: "1" |
0 commit comments