|
5 | 5 | defaults: global |
6 | 6 | description: '' |
7 | 7 | disabled: false |
8 | | - display-name: 'Docker system prune (nightly)' |
| 8 | + display-name: 'Docker system prune (nightly)' |
9 | 9 | concurrent: false |
10 | 10 | quiet-period: 5 |
11 | 11 | logrotate: |
|
16 | 16 | triggers: |
17 | 17 | - timed: "H 23 * * *" |
18 | 18 | builders: |
19 | | - - shell: |
| 19 | + - shell: |
20 | 20 | command: | |
21 | 21 | docker system prune -f |
22 | 22 | - job: |
|
25 | 25 | defaults: global |
26 | 26 | description: '' |
27 | 27 | disabled: false |
28 | | - display-name: 'Monitor OCI Artifacts (daily)' |
| 28 | + display-name: 'Monitor OCI Artifacts (daily)' |
29 | 29 | concurrent: false |
30 | 30 | quiet-period: 5 |
31 | 31 | logrotate: |
|
44 | 44 | triggers: |
45 | 45 | - timed: "H 7 * * *" |
46 | 46 | builders: |
47 | | - - shell: |
| 47 | + - shell: |
48 | 48 | command: | |
49 | | - cd tools/monitor-oci-artifacts/ |
50 | | - docker build . -t docker.stackable.tech/tools/monitor-oci-artifacts:latest |
51 | | - cd ../../ |
52 | | - |
53 | 49 | set +x |
54 | 50 | set +e |
55 | 51 |
|
56 | | - docker run --rm docker.stackable.tech/tools/monitor-oci-artifacts:latest > report.txt |
| 52 | + docker run --rm oci.stackable.tech/stackable/monitor-oci-artifacts:0.0.0-dev > report.txt |
57 | 53 | report_exit_code=$? |
58 | 54 |
|
59 | 55 | exit $report_exit_code |
|
72 | 68 | defaults: global |
73 | 69 | description: '' |
74 | 70 | disabled: false |
75 | | - display-name: 'Harbor Garbage Collection (daily)' |
| 71 | + display-name: 'Harbor Garbage Collection (daily)' |
76 | 72 | concurrent: false |
77 | 73 | quiet-period: 5 |
78 | 74 | logrotate: |
|
96 | 92 | credential-id: HARBOR_ROBOT_PASSWORD |
97 | 93 | variable: HARBOR_ROBOT_PASSWORD |
98 | 94 | builders: |
99 | | - - shell: |
| 95 | + - shell: |
100 | 96 | command: | |
101 | | - cd tools/harbor-garbage-collector/ |
102 | | - docker build . -t docker.stackable.tech/tools/harbor-garbage-collector:latest |
103 | | - cd ../../ |
104 | | - |
105 | 97 | set +x |
106 | 98 | set +e |
107 | 99 |
|
108 | | - docker run --rm -e HARBOR_ROBOT_PASSWORD=$HARBOR_ROBOT_PASSWORD docker.stackable.tech/tools/harbor-garbage-collector:latest > report.txt |
| 100 | + docker run --rm -e HARBOR_ROBOT_PASSWORD=$HARBOR_ROBOT_PASSWORD oci.stackable.tech/stackable/harbor-garbage-collector:0.0.0-dev > report.txt |
109 | 101 | report_exit_code=$? |
110 | 102 |
|
111 | 103 | exit $report_exit_code |
|
124 | 116 | defaults: global |
125 | 117 | description: '' |
126 | 118 | disabled: false |
127 | | - display-name: 'Nexus Garbage Collection (daily)' |
| 119 | + display-name: 'Nexus Garbage Collection (daily)' |
128 | 120 | concurrent: false |
129 | 121 | quiet-period: 5 |
130 | 122 | logrotate: |
|
149 | 141 | username: NEXUS_USER |
150 | 142 | password: NEXUS_PASSWORD |
151 | 143 | builders: |
152 | | - - shell: |
| 144 | + - shell: |
153 | 145 | command: | |
154 | | - cd tools/nexus-garbage-collector/ |
155 | | - docker build . -t docker.stackable.tech/tools/nexus-garbage-collector:latest |
156 | | - cd ../../ |
157 | | - |
158 | 146 | set +x |
159 | 147 | set +e |
160 | 148 |
|
161 | 149 | docker run --rm \ |
162 | 150 | -e NEXUS_USER=$NEXUS_USER \ |
163 | 151 | -e NEXUS_PASSWORD=$NEXUS_PASSWORD \ |
164 | 152 | -e RUST_LOG=info \ |
165 | | - docker.stackable.tech/tools/nexus-garbage-collector:latest &> report.txt |
| 153 | + oci.stackable.tech/stackable/nexus-garbage-collector:0.0.0-dev &> report.txt |
166 | 154 | report_exit_code=$? |
167 | 155 |
|
168 | 156 | exit $report_exit_code |
|
0 commit comments