Skip to content

Commit

Permalink
Kube 1.12 (#58)
Browse files Browse the repository at this point in the history
* Update kube version to 1.12.3

* sys: Remove obsolete feature gates
  • Loading branch information
hectorhuertas authored Dec 12, 2018
1 parent dea30a1 commit c99b027
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/kube-scheduler-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
kind: KubeSchedulerConfiguration
apiVersion: componentconfig/v1alpha1
apiVersion: kubescheduler.config.k8s.io/v1alpha1
clientConnection:
kubeconfig: /etc/kubernetes/config/master-kubeconfig
leaderElection:
Expand Down
14 changes: 9 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ variable "hyperkube_image_url" {

variable "hyperkube_image_tag" {
description = "The version of the hyperkube image to use."
default = "v1.11.5"
default = "v1.12.3"
}

variable "cluster_dns" {
Expand Down Expand Up @@ -184,10 +184,14 @@ variable "feature_gates" {
description = "https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/"
type = "map"

default = {
"ExpandPersistentVolumes" = "true"
"PodShareProcessNamespace" = "true"
}
# yaml fragment for config file use, example default feature gates:
# ```
# default = {
# "ExpandPersistentVolumes" = "true"
# "PodShareProcessNamespace" = "true"
# }
# ```
default = {}
}

locals {
Expand Down

0 comments on commit c99b027

Please sign in to comment.