Files
kubernetes/pkg/kubelet
Michael Taufen 131b419596 Make feature gates loadable from a map[string]bool
Command line flag API remains the same. This allows ComponentConfig
structures (e.g. KubeletConfiguration) to express the map structure
behind feature gates in a natural way when written as JSON or YAML.

For example:

KubeletConfiguration Before:
```
apiVersion: kubeletconfig/v1alpha1
kind: KubeletConfiguration
featureGates: "DynamicKubeletConfig=true,Accelerators=true"
```

KubeletConfiguration After:
```
apiVersion: kubeletconfig/v1alpha1
kind: KubeletConfiguration
featureGates:
  DynamicKubeletConfig: true
  Accelerators: true
```
2017-10-10 09:37:51 -07:00
..
2017-09-04 09:02:34 +02:00
2017-09-29 19:22:23 +08:00
2017-09-29 22:15:48 +00:00
2017-10-07 11:28:47 +02:00
2017-10-07 11:28:47 +02:00
2017-06-22 11:31:03 -07:00
2017-06-22 11:31:03 -07:00
2017-10-05 12:54:38 -07:00
2017-07-10 14:05:46 -07:00
2017-06-22 11:31:03 -07:00
2017-07-19 11:33:06 +08:00