k3s/cluster/gce/manifests/kube-apiserver.manifest

143 lines
3.8 KiB
Plaintext
Raw Normal View History

2015-04-09 21:35:07 +00:00
{
2015-06-30 02:30:14 +00:00
"apiVersion": "v1",
2015-04-09 21:35:07 +00:00
"kind": "Pod",
"metadata": {
"name":"kube-apiserver",
"namespace": "kube-system",
2017-06-12 22:22:04 +00:00
"annotations": {
"scheduler.alpha.kubernetes.io/critical-pod": "",
"seccomp.security.alpha.kubernetes.io/pod": "docker/default"
2017-06-12 22:22:04 +00:00
},
"labels": {
"tier": "control-plane",
"component": "kube-apiserver"
}
},
2015-04-09 21:35:07 +00:00
"spec":{
"hostNetwork": true,
"containers":[
2018-03-28 20:53:01 +00:00
{{kms_plugin_container}}
2015-04-09 21:35:07 +00:00
{
"name": "kube-apiserver",
"image": "{{pillar['kube_docker_registry']}}/kube-apiserver:{{pillar['kube-apiserver_docker_tag']}}",
"resources": {
"requests": {
"cpu": "125m"
}
},
2015-04-09 21:35:07 +00:00
"command": [
2015-04-24 21:46:43 +00:00
"/bin/sh",
"-c",
"exec /usr/local/bin/kube-apiserver {{params}} --allow-privileged={{pillar['allow_privileged']}} 1>>/var/log/kube-apiserver.log 2>&1"
2015-04-09 21:35:07 +00:00
],
{{container_env}}
"livenessProbe": {
"httpGet": {
"host": "127.0.0.1",
"port": 8080,
"path": "/healthz"
},
"initialDelaySeconds": {{liveness_probe_initial_delay}},
"timeoutSeconds": 15
},
2015-04-09 21:35:07 +00:00
"ports":[
{ "name": "https",
"containerPort": {{secure_port}},
"hostPort": {{secure_port}}},{
2015-04-09 21:35:07 +00:00
"name": "local",
"containerPort": 8080,
"hostPort": 8080}
],
"volumeMounts": [
2018-03-28 20:53:01 +00:00
{{kms_socket_mount}}
{{encryption_provider_mount}}
{{cloud_config_mount}}
{{additional_cloud_config_mount}}
{{webhook_config_mount}}
{{webhook_authn_config_mount}}
{{audit_policy_config_mount}}
{{audit_webhook_config_mount}}
{{admission_controller_config_mount}}
{{image_policy_webhook_config_mount}}
2015-04-09 21:35:07 +00:00
{ "name": "srvkube",
2018-06-21 11:58:11 +00:00
"mountPath": "/etc/srv/kubernetes",
2015-04-09 21:35:07 +00:00
"readOnly": true},
2015-04-24 21:46:43 +00:00
{ "name": "logfile",
"mountPath": "/var/log/kube-apiserver.log",
"readOnly": false},
{ "name": "auditlogfile",
"mountPath": "/var/log/kube-apiserver-audit.log",
"readOnly": false},
2015-04-09 21:35:07 +00:00
{ "name": "etcssl",
"mountPath": "/etc/ssl",
"readOnly": true},
{ "name": "usrsharecacerts",
"mountPath": "/usr/share/ca-certificates",
"readOnly": true},
2015-04-09 21:35:07 +00:00
{ "name": "varssl",
"mountPath": "/var/ssl",
"readOnly": true},
{ "name": "etcopenssl",
"mountPath": "/etc/openssl",
"readOnly": true},
{ "name": "etcpki",
2017-02-27 23:06:11 +00:00
"mountPath": "/etc/srv/pki",
"readOnly": true},
{ "name": "srvsshproxy",
"mountPath": "{{srv_sshproxy_path}}",
"readOnly": false}
2015-04-09 21:35:07 +00:00
]
}
],
"volumes":[
2018-03-28 20:53:01 +00:00
{{kms_socket_volume}}
{{encryption_provider_volume}}
{{cloud_config_volume}}
{{additional_cloud_config_volume}}
{{webhook_config_volume}}
{{webhook_authn_config_volume}}
{{audit_policy_config_volume}}
{{audit_webhook_config_volume}}
{{admission_controller_config_volume}}
{{image_policy_webhook_config_volume}}
2015-04-09 21:35:07 +00:00
{ "name": "srvkube",
"hostPath": {
2018-06-21 11:58:11 +00:00
"path": "/etc/srv/kubernetes"}
2015-04-09 21:35:07 +00:00
},
2015-04-24 21:46:43 +00:00
{ "name": "logfile",
"hostPath": {
2017-06-18 13:34:24 +00:00
"path": "/var/log/kube-apiserver.log",
"type": "FileOrCreate"}
2015-04-24 21:46:43 +00:00
},
{ "name": "auditlogfile",
"hostPath": {
2017-06-18 13:34:24 +00:00
"path": "/var/log/kube-apiserver-audit.log",
"type": "FileOrCreate"}
},
2015-04-09 21:35:07 +00:00
{ "name": "etcssl",
"hostPath": {
"path": "/etc/ssl"}
},
{ "name": "usrsharecacerts",
"hostPath": {
"path": "/usr/share/ca-certificates"}
},
2015-04-09 21:35:07 +00:00
{ "name": "varssl",
"hostPath": {
"path": "/var/ssl"}
},
{ "name": "etcopenssl",
"hostPath": {
"path": "/etc/openssl"}
},
{ "name": "etcpki",
2015-04-09 21:35:07 +00:00
"hostPath": {
2017-02-27 23:06:11 +00:00
"path": "/etc/srv/pki"}
},
{ "name": "srvsshproxy",
"hostPath": {
"path": "{{srv_sshproxy_path}}"}
2015-04-09 21:35:07 +00:00
}
]
}}