You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -20,22 +24,61 @@ The service deck-internal has been down for 5 minutes.
20
24
21
25
Resolution before [DPTP-2712](https://issues.redhat.com/browse/DPTP-2712) is completed:
22
26
23
-
> oc --context app.ci delete pod -n ci -l app=prow,component=deck-internal
27
+
```bash
28
+
oc --context app.ci delete pod -n ci -l app=prow,component=deck-internal
29
+
```
24
30
25
-
## Access internal job logs
26
-
For jobs available in [`deck-internal`](https://deck-internal-ci.apps.ci.l2s4.p1.openshiftapps.com/), the logs are stored in GCP project `openshift-ci-private`, bucket `origin-ci-private`.
31
+
Access internal job logs
32
+
========================
27
33
28
-
The logs can be deleted in case of leak of secrets or other sensitive information.
34
+
For jobs available in [deck-internal](https://deck-internal-ci.apps.ci.l2s4.p1.openshiftapps.com/), the logs are stored in GCP project `openshift-ci-private`, bucket `origin-ci-private`.
29
35
36
+
The logs can be deleted in case of leak of secrets or other sensitive information.
30
37
31
-
## quay-io-image-mirroring-failures
38
+
quay-io-image-mirroring-failures
39
+
================================
32
40
33
41
The alert is fired if there are many failures of `oc image mirror` in `ci-images-mirror`.
42
+
43
+
Choose a method below - pod logs, cloudwatch or splunk - and then we can run the command locally in our computer:
error: unable to retrieve source image registry.ci.openshift.org/origin/scos-4.16 manifest #1 from manifest list: manifest unknown: manifest unknown
76
+
```
77
+
78
+
The logs above indicates `unable to retrieve source image registry.ci.openshift.org/origin/scos-4.16 manifest #1 from manifest list: manifest unknown: manifest unknown`, following the message we can see that the manifest is `registry.ci.openshift.org/origin/scos-4.16:cluster-capi-operator`
37
79
38
-
Or on CloudWatch:
80
+
CloudWatch:
81
+
-----------
39
82
40
83
```txt
41
84
fields @timestamp,structured.component as component,structured.msg as msg,structured.args as args, @message, @logStream, @log
@@ -44,7 +87,7 @@ fields @timestamp,structured.component as component,structured.msg as msg,struct
44
87
| limit 20
45
88
```
46
89
47
-
Example,
90
+
Example:
48
91
49
92
```json
50
93
{
@@ -62,17 +105,21 @@ Example,
62
105
}
63
106
```
64
107
65
-
The above log line indicates "quay.io/openshift/ci:ci_cert-manager-cainjector_v1.9.1\nerror: unable to push manifest to quay.io/openshift/ci:ci_fedora_latest: manifest invalid: manifest" is the problem.
108
+
The logs above indicates `quay.io/openshift/ci:ci_cert-manager-cainjector_v1.9.1\nerror: unable to push manifest to quay.io/openshift/ci:ci_fedora_latest: manifest invalid: manifest` is the problem.
66
109
67
-
Then we can run the cmd with oc-cli in our laptop:
If it reproduces the same error, mostly, it is caused by a broken source image. In that case, we should
77
-
- Fix the source image, e.g., by rebuilding the image.
78
-
- Ignore the mirroring otherwise: See [RFE-5363](https://issues.redhat.com/browse/) for example.
117
+
Example:
118
+
119
+
```json
120
+
{
121
+
"message" : {"args":"image mirror --keep-manifest-list --registry-config=/etc/push/.dockerconfigjson --continue-on-error=true --max-per-registry=20 registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.19.art-arm64=quay.io/openshift/ci:ocp_builder_rhel-9-base-nodejs-openshift-4.19.art-arm64 registry.ci.openshift.org/origin/scos-4.16:cluster-capi-operator=quay.io/openshift/ci:origin_scos-4.16_cluster-capi-operator registry.ci.openshift.org/origin/scos-4.13:vertical-pod-autoscaler-operator=quay.io/openshift/ci:origin_scos-4.13_vertical-pod-autoscaler-operator","msg":"Running command failed.","output":"...\nerror: unable to retrieve source image registry.ci.openshift.org/origin/scos-4.16 manifest #1 from manifest list: manifest unknown: manifest unknown\n\ninfo: Mirroring completed in 4.54s (0B/s)\nerror: one or more errors occurred\n","severity":"debug","time":"2025-02-12T13:52:27Z"}
122
+
}
123
+
```
124
+
125
+
The logs above indicates `unable to retrieve source image registry.ci.openshift.org/origin/scos-4.16 manifest #1 from manifest list: manifest unknown: manifest unknown`, following the message we can see that the manifest is `registry.ci.openshift.org/origin/scos-4.16:cluster-capi-operator`
0 commit comments