mirror of https://github.com/easzlab/kubeasz.git
54 lines
2.0 KiB
Django/Jinja
54 lines
2.0 KiB
Django/Jinja
[Unit]
|
|
Description=Kubernetes API Server
|
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart={{ bin_dir }}/kube-apiserver \
|
|
--admission-control=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,ResourceQuota,NodeRestriction,MutatingAdmissionWebhook,ValidatingAdmissionWebhook \
|
|
--bind-address={{ inventory_hostname }} \
|
|
--insecure-bind-address=127.0.0.1 \
|
|
--authorization-mode=Node,RBAC \
|
|
--kubelet-https=true \
|
|
--kubelet-client-certificate={{ ca_dir }}/admin.pem \
|
|
--kubelet-client-key={{ ca_dir }}/admin-key.pem \
|
|
--anonymous-auth=false \
|
|
{% if BASIC_AUTH_ENABLE == "yes" %}
|
|
--basic-auth-file={{ ca_dir }}/basic-auth.csv \
|
|
{% endif %}
|
|
--service-cluster-ip-range={{ SERVICE_CIDR }} \
|
|
--service-node-port-range={{ NODE_PORT_RANGE }} \
|
|
--tls-cert-file={{ ca_dir }}/kubernetes.pem \
|
|
--tls-private-key-file={{ ca_dir }}/kubernetes-key.pem \
|
|
--client-ca-file={{ ca_dir }}/ca.pem \
|
|
--service-account-key-file={{ ca_dir }}/ca-key.pem \
|
|
--etcd-cafile={{ ca_dir }}/ca.pem \
|
|
--etcd-certfile={{ ca_dir }}/kubernetes.pem \
|
|
--etcd-keyfile={{ ca_dir }}/kubernetes-key.pem \
|
|
--etcd-servers={{ ETCD_ENDPOINTS }} \
|
|
--enable-swagger-ui=true \
|
|
--endpoint-reconciler-type=lease \
|
|
--allow-privileged=true \
|
|
--audit-log-maxage=30 \
|
|
--audit-log-maxbackup=3 \
|
|
--audit-log-maxsize=100 \
|
|
--audit-log-path=/var/lib/audit.log \
|
|
--event-ttl=1h \
|
|
--requestheader-client-ca-file={{ ca_dir }}/ca.pem \
|
|
--requestheader-allowed-names= \
|
|
--requestheader-extra-headers-prefix=X-Remote-Extra- \
|
|
--requestheader-group-headers=X-Remote-Group \
|
|
--requestheader-username-headers=X-Remote-User \
|
|
--proxy-client-cert-file={{ ca_dir }}/aggregator-proxy.pem \
|
|
--proxy-client-key-file={{ ca_dir }}/aggregator-proxy-key.pem \
|
|
--enable-aggregator-routing=true \
|
|
--runtime-config=batch/v2alpha1=true \
|
|
--v=2
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
Type=notify
|
|
LimitNOFILE=65536
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|