-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Differences in kubelet config: ``` + "x509": { + "clientCAFile": "/etc/kubernetes/ssl/ca.pem" + }, ``` and ``` + "featureGates": { + "AdvancedAuditing": false, + "ExpandPersistentVolumes": true, + "PodShareProcessNamespace": true + }, ``` And the only warning we get from kubelet logs is: ``` Oct 03 14:57:41 ip-10-66-23-108 docker[1252]: Flag --allow-privileged has been deprecated, will be removed in a future version ``` which we can't do anything about currently: https://trello.com/c/LtXvyQuZ/486-remove-allow-privileged-from-kubelet
- Loading branch information
1 parent
5306c14
commit 89b2e96
Showing
7 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
kind: KubeletConfiguration | ||
apiVersion: kubelet.config.k8s.io/v1beta1 | ||
authentication: | ||
anonymous: | ||
enabled: true | ||
webhook: | ||
enabled: false | ||
x509: | ||
clientCAFile: "/etc/kubernetes/ssl/ca.pem" | ||
authorization: | ||
mode: AlwaysAllow | ||
clusterDNS: | ||
- "${cluster_dns}" | ||
clusterDomain: "cluster.local" | ||
${feature_gates == "" ? "" : "featureGates:\n ${feature_gates}"} | ||
readOnlyPort: 10255 | ||
serializeImagePulls: false | ||
staticPodPath: "/etc/kubernetes/manifests" |
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
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
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
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