我正在使用fabric8在Kubernetes之上开发一个集群管理层,我很困惑 “官方”API用于在出现问题时获取错误通知 实例化pods / rep控制器&服务等。
在“Pod部署代码”部分中,我有一个我们为pod做的精简版本。在这种情况下
一切正常,我们的代码很好。我们依靠为您设置'手表'
可以在方法deployPodWithWatch
中看到。我在给定的eventReceived
回调中所做的一切
是打印事件,但我们的真实代码将拆分这样的通知:
got action:
MODIFIED /
Pod(apiVersion=v1, kind=Pod, metadata=...etc etc
status=PodStatus(
conditions=[
并选择Pod的'status'元素,当我们得到PodCondition(status = True,type = Ready)时,我们知道 我们的pod已成功部署。
在快乐的道路案例中,这很有效。您实际上可以运行随变量提供的代码 k8sUrl设置为您网站的正确网址(希望您的k8s 安装不需要特定于站点的auth,因此我没有为此提供代码。
但是,假设您将变量imageName
更改为“nginBoo”。没有公共码头工人
该名称的图像,因此在运行代码后,将kubernetes上下文设置为命名空间“junk”,
并做一个
describe pod podboy
您将在末尾看到两条状态消息,其中包含以下Reason / Message
值Reason message
failedSync Error syncing pod, skipping...
failed Failed to pull image "nginBoo": API error (500):
Error parsing reference: "nginBoo"
is not a valid repository/tag
我想实现一个监视回调,以便捕获这些类型的错误。然而, 我唯一看到的是'MODIFIED'事件,其中Pod有这样一个字段:
state=ContainerState(running=null, terminated=null,
waiting=ContainerStateWaiting(
reason=API error (500):
Error parsing reference:
"nginBoo" is not a valid repository/tag
我想我可以找一个包含字符串'API error'的原因代码,但似乎这样 非常依赖于实现的黑客 - 它可能不会涵盖所有情况,也许它会 用我未来的版本改变我的脚步。我想要一些更“官方”的方式 弄清楚是否有错误,但我的搜索已经枯竭 - 所以我谦卑地说 请求所有k8s专家的指导。谢谢!
Pod部署代码
import com.fasterxml.jackson.databind.ObjectMapper
import scala.collection.JavaConverters._
import com.ning.http.client.ws.WebSocket
import com.typesafe.scalalogging.StrictLogging
import io.fabric8.kubernetes.api.model.{DoneableNamespace, Namespace, Pod, ReplicationController}
import io.fabric8.kubernetes.client.DefaultKubernetesClient.ConfigBuilder
import io.fabric8.kubernetes.client.Watcher.Action
import io.fabric8.kubernetes.client.dsl.Resource
import io.fabric8.kubernetes.client.{DefaultKubernetesClient, Watcher}
object ErrorTest extends App with StrictLogging {
// corresponds to --insecure-skip-tls-verify=true, according to io.fabric8.kubernetes.api.model.Cluster
val trustCerts = true
val k8sUrl = "http://localhost:8080"
val namespaceName = "junk" // replace this with name of a namespace that you know exists
val imageName: String = "nginx"
def go(): Unit = {
val kube = getConnection
dumpNamespaces(kube)
deployPodWithWatch(kube, getPod(image = imageName))
}
def deployPodWithWatch(kube: DefaultKubernetesClient, pod: Pod): Unit = {
kube.pods().inNamespace(namespaceName).create(pod) /* create the pod ! */
val podWatchWebSocket: WebSocket = /* create watch on the pod */
kube.pods().inNamespace(namespaceName).withName(pod.getMetadata.getName).watch(getPodWatch)
}
def getPod(image: String): Pod = {
val jsonTemplate =
"""
|{
| "kind": "Pod",
| "apiVersion": "v1",
| "metadata": {
| "name": "podboy",
| "labels": {
| "app": "nginx"
| }
| },
| "spec": {
| "containers": [
| {
| "name": "podboy",
| "image": "<image>",
| "ports": [
| {
| "containerPort": 80,
| "protocol": "TCP"
| }
| ]
| }
| ]
| }
|}
""".
stripMargin
val replacement: String = "image\": \"" + image
val json = jsonTemplate.replaceAll("image\": \"<image>", replacement)
System.out.println("json:" + json);
new ObjectMapper().readValue(json, classOf[Pod])
}
def dumpNamespaces(kube: DefaultKubernetesClient): Unit = {
val namespaceNames = kube.namespaces().list().getItems.asScala.map {
(ns: Namespace) => {
ns.getMetadata.getName
}
}
System.out.println("namespaces are:" + namespaceNames);
}
def getConnection = {
val configBuilder = new ConfigBuilder()
val config =
configBuilder.
trustCerts(trustCerts).
masterUrl(k8sUrl).
build()
new DefaultKubernetesClient(config)
}
def getPodWatch: Watcher[Pod] = {
new Watcher[Pod]() {
def eventReceived(action: Action, watchedPod: Pod) {
System.out.println("got action: " + action + " / " + watchedPod)
}
}
}
go()
}