Last active
July 8, 2018 22:37
-
-
Save d-nishi/1109fec153930e8de04a1bf160cacffb to your computer and use it in GitHub Desktop.
kube-apiserver manifest to enable in-tree cloud-provider-aws
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
annotations: | |
dns.alpha.kubernetes.io/internal: api.internal.dnishi-kops2.k8s.local | |
scheduler.alpha.kubernetes.io/critical-pod: "" | |
creationTimestamp: null | |
labels: | |
k8s-app: kube-apiserver | |
name: kube-apiserver | |
namespace: kube-system | |
spec: | |
containers: | |
- command: | |
- /bin/sh | |
- -c | |
- mkfifo /tmp/pipe; (tee -a /var/log/kube-apiserver.log < /tmp/pipe & ) ; exec | |
/usr/local/bin/kube-apiserver --address=127.0.0.1 --admission-control=Initializers,NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,NodeRestriction,ResourceQuota | |
--allow-privileged=true --anonymous-auth=false --apiserver-count=1 --authorization-mode=RBAC | |
--basic-auth-file=/srv/kubernetes/basic_auth.csv --client-ca-file=/srv/kubernetes/ca.crt | |
--cloud-provider=aws --etcd-quorum-read=false --etcd-servers-overrides=/events#http://127.0.0.1:4002 | |
--etcd-servers=http://127.0.0.1:4001 --insecure-port=8080 --kubelet-preferred-address-types=InternalIP,Hostname,ExternalIP | |
--proxy-client-cert-file=/srv/kubernetes/apiserver-aggregator.cert --proxy-client-key-file=/srv/kubernetes/apiserver-aggregator.key | |
--requestheader-allowed-names=aggregator --requestheader-client-ca-file=/srv/kubernetes/apiserver-aggregator-ca.cert | |
--requestheader-extra-headers-prefix=X-Remote-Extra- --requestheader-group-headers=X-Remote-Group | |
--requestheader-username-headers=X-Remote-User --secure-port=443 --service-cluster-ip-range=100.64.0.0/13 | |
--storage-backend=etcd2 --tls-cert-file=/srv/kubernetes/server.cert --tls-private-key-file=/srv/kubernetes/server.key | |
--token-auth-file=/srv/kubernetes/known_tokens.csv --v=2 > /tmp/pipe 2>&1 | |
image: k8s.gcr.io/kube-apiserver:v1.11.0 | |
livenessProbe: | |
httpGet: | |
host: 127.0.0.1 | |
path: /healthz | |
port: 8080 | |
initialDelaySeconds: 15 | |
timeoutSeconds: 15 | |
name: kube-apiserver | |
ports: | |
- containerPort: 443 | |
hostPort: 443 | |
name: https | |
- containerPort: 8080 | |
hostPort: 8080 | |
name: local | |
resources: | |
requests: | |
cpu: 150m | |
volumeMounts: | |
- mountPath: /etc/ssl | |
name: etcssl | |
readOnly: true | |
- mountPath: /etc/pki/tls | |
name: etcpkitls | |
readOnly: true | |
- mountPath: /etc/pki/ca-trust | |
name: etcpkica-trust | |
readOnly: true | |
- mountPath: /usr/share/ssl | |
name: usrsharessl | |
readOnly: true | |
- mountPath: /usr/ssl | |
name: usrssl | |
readOnly: true | |
- mountPath: /usr/lib/ssl | |
name: usrlibssl | |
readOnly: true | |
- mountPath: /usr/local/openssl | |
name: usrlocalopenssl | |
readOnly: true | |
- mountPath: /var/ssl | |
name: varssl | |
readOnly: true | |
- mountPath: /etc/openssl | |
name: etcopenssl | |
readOnly: true | |
- mountPath: /var/log/kube-apiserver.log | |
name: logfile | |
- mountPath: /srv/kubernetes | |
name: srvkube | |
readOnly: true | |
- mountPath: /srv/sshproxy | |
name: srvsshproxy | |
readOnly: true | |
hostNetwork: true | |
tolerations: | |
- key: CriticalAddonsOnly | |
operator: Exists | |
volumes: | |
- hostPath: | |
path: /etc/ssl | |
name: etcssl | |
- hostPath: | |
path: /etc/pki/tls | |
name: etcpkitls | |
- hostPath: | |
path: /etc/pki/ca-trust | |
name: etcpkica-trust | |
- hostPath: | |
path: /usr/share/ssl | |
name: usrsharessl | |
- hostPath: | |
path: /usr/ssl | |
name: usrssl | |
- hostPath: | |
path: /usr/lib/ssl | |
name: usrlibssl | |
- hostPath: | |
path: /usr/local/openssl | |
name: usrlocalopenssl | |
- hostPath: | |
path: /var/ssl | |
name: varssl | |
- hostPath: | |
path: /etc/openssl | |
name: etcopenssl | |
- hostPath: | |
path: /var/log/kube-apiserver.log | |
name: logfile | |
- hostPath: | |
path: /srv/kubernetes | |
name: srvkube | |
- hostPath: | |
path: /srv/sshproxy | |
name: srvsshproxy | |
status: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment