8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
184 lines
3.4 KiB
JSON
184 lines
3.4 KiB
JSON
{
|
|
"kind": "ReplicationController",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "hollow-node",
|
|
"labels": {
|
|
"name": "hollow-node"
|
|
}
|
|
},
|
|
"spec": {
|
|
"replicas": {{numreplicas}},
|
|
"selector": {
|
|
"name": "hollow-node"
|
|
},
|
|
"template": {
|
|
"metadata": {
|
|
"labels": {
|
|
"name": "hollow-node"
|
|
}
|
|
},
|
|
"spec": {
|
|
"volumes": [
|
|
{
|
|
"name": "kubeconfig-volume",
|
|
"secret": {
|
|
"secretName": "kubeconfig"
|
|
}
|
|
},
|
|
{
|
|
"name": "npdconfig-volume",
|
|
"configMap": {
|
|
"name": "node-problem-detector-config"
|
|
}
|
|
},
|
|
{
|
|
"name": "logs-volume",
|
|
"hostPath": {
|
|
"path": "/var/logs"
|
|
}
|
|
},
|
|
{
|
|
"name": "kernellog-volume",
|
|
"hostPath": {
|
|
"path": "/var/log"
|
|
}
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"name": "hollow-kubelet",
|
|
"image": "gcr.io/{{project}}/kubemark:latest",
|
|
"ports": [
|
|
{"containerPort": 4194},
|
|
{"containerPort": 10250},
|
|
{"containerPort": 10255}
|
|
],
|
|
"env": [
|
|
{
|
|
"name": "CONTENT_TYPE",
|
|
"valueFrom": {
|
|
"configMapKeyRef": {
|
|
"name": "node-configmap",
|
|
"key": "content.type"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "MY_POD_NAME",
|
|
"valueFrom": {
|
|
"fieldRef": {
|
|
"fieldPath": "metadata.name"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"command": [
|
|
"/bin/sh",
|
|
"-c",
|
|
"./kubemark.sh --morph=kubelet $(CONTENT_TYPE) --v=2 1>>/var/logs/kubelet_$(MY_POD_NAME).log 2>&1"
|
|
],
|
|
"volumeMounts": [
|
|
{
|
|
"name": "kubeconfig-volume",
|
|
"mountPath": "/kubeconfig"
|
|
},
|
|
{
|
|
"name": "logs-volume",
|
|
"mountPath": "/var/logs"
|
|
}
|
|
],
|
|
"resources": {
|
|
"requests": {
|
|
"cpu": "50m",
|
|
"memory": "100M"
|
|
}
|
|
},
|
|
"securityContext": {
|
|
"privileged": true
|
|
}
|
|
|
|
},
|
|
{
|
|
"name": "hollow-proxy",
|
|
"image": "gcr.io/{{project}}/kubemark:latest",
|
|
"env": [
|
|
{
|
|
"name": "CONTENT_TYPE",
|
|
"valueFrom": {
|
|
"configMapKeyRef": {
|
|
"name": "node-configmap",
|
|
"key": "content.type"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "MY_POD_NAME",
|
|
"valueFrom": {
|
|
"fieldRef": {
|
|
"fieldPath": "metadata.name"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"command": [
|
|
"/bin/sh",
|
|
"-c",
|
|
"./kubemark.sh --morph=proxy $(CONTENT_TYPE) --v=2 1>>/var/logs/kube_proxy_$(MY_POD_NAME).log 2>&1"
|
|
],
|
|
"volumeMounts": [
|
|
{
|
|
"name": "kubeconfig-volume",
|
|
"mountPath": "/kubeconfig"
|
|
},
|
|
{
|
|
"name": "logs-volume",
|
|
"mountPath": "/var/logs"
|
|
}
|
|
],
|
|
"resources": {
|
|
"requests": {
|
|
"cpu": "20m",
|
|
"memory": "100M"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "hollow-node-problem-detector",
|
|
"image": "gcr.io/google_containers/node-problem-detector:v0.2",
|
|
"env": [
|
|
{
|
|
"name": "NODE_NAME",
|
|
"valueFrom": {
|
|
"fieldRef": {
|
|
"fieldPath": "spec.nodeName"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"volumeMounts": [
|
|
{
|
|
"name": "npdconfig-volume",
|
|
"mountPath": "/config",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"name": "kernellog-volume",
|
|
"mountPath": "/log",
|
|
"readOnly": true
|
|
}
|
|
],
|
|
"resources": {
|
|
"requests": {
|
|
"cpu": "20m",
|
|
"memory": "20Mi"
|
|
}
|
|
},
|
|
"securityContext": {
|
|
"privileged": true
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|