WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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
@@ -158,17 +158,17 @@ message for any node with this problem.
158
158
},
159
159
},
160
160
},
161
-
&unitSpec{
161
+
{
162
162
Name: "openshift-sdn-master",
163
163
StartMatch: regexp.MustCompile("Starting OpenShift SDN Master"),
164
164
LogMatchers: []logMatcher{},
165
165
},
166
-
&unitSpec{
166
+
{
167
167
Name: "openshift-node",
168
168
StartMatch: regexp.MustCompile("Starting an OpenShift node"),
169
169
LogMatchers: []logMatcher{
170
170
badImageTemplate,
171
-
logMatcher{
171
+
{
172
172
Regexp: regexp.MustCompile(`error updating node status, will retry:.*system:(\S+) cannot get on minions with name "(\S+)" in default|Failed to list .*Forbidden: "\S+" system:node-\S+ cannot list on (pods|services) in`),
173
173
Level: log.ErrorLevel,
174
174
Id: "sdLogONnodePerm",
@@ -202,7 +202,7 @@ have been put in place and are blocking this request; check the error
202
202
message to see whether the node is attempting to use the wrong node name.
203
203
`,
204
204
},
205
-
logMatcher{
205
+
{
206
206
Regexp: regexp.MustCompile("Unable to load services: Get (http\\S+/api/v1beta1/services\\?namespace=): (.+)"), // e.g. x509: certificate signed by unknown authority
207
207
Level: log.ErrorLevel,
208
208
Id: "sdLogONconnMaster",
@@ -212,7 +212,7 @@ to determine its responsibilities. This host will not function as a node
212
212
until this is resolved. Pods scheduled for this node will remain in
213
213
pending or unknown state forever.`,
214
214
},
215
-
logMatcher{
215
+
{
216
216
Regexp: regexp.MustCompile(`Unable to load services: request.*403 Forbidden: Forbidden: "/api/v1beta1/services\?namespace=" denied by default`),
217
217
Level: log.ErrorLevel,
218
218
Id: "sdLogONMasterForbids",
@@ -230,11 +230,11 @@ scheduled for this node will remain in pending or unknown state forever.`,
230
230
},
231
231
},
232
232
},
233
-
&unitSpec{
233
+
{
234
234
Name: "openshift-sdn-node",
235
235
StartMatch: regexp.MustCompile("Starting OpenShift SDN node"),
236
236
LogMatchers: []logMatcher{
237
-
logMatcher{
237
+
{
238
238
Regexp: regexp.MustCompile("Could not find an allocated subnet for this minion.*Waiting.."),
239
239
Level: log.WarnLevel,
240
240
Id: "sdLogOSNnoSubnet",
@@ -261,11 +261,11 @@ Check MASTER_URL in /etc/sysconfig/openshift-sdn-node:
261
261
},
262
262
},
263
263
},
264
-
&unitSpec{
264
+
{
265
265
Name: "docker",
266
266
StartMatch: regexp.MustCompile(`Starting Docker Application Container Engine.`), // RHEL Docker at least
0 commit comments