Skip to content

Commit

Permalink
Update amazon-vpc-cni-k8s to v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Feb 13, 2020
1 parent 8bd9061 commit 7a4e6ac
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
16 changes: 15 additions & 1 deletion upup/pkg/fi/cloudup/bootstrapchannelbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,21 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons {
Version: fi.String(versions[id]),
Selector: networkingSelector,
Manifest: fi.String(location),
KubernetesVersion: ">=1.12.0",
KubernetesVersion: ">=1.12.0 <1.16.0",
Id: id,
})
}

{
id := "k8s-1.16"
location := key + "/" + id + ".yaml"

addons.Spec.Addons = append(addons.Spec.Addons, &channelsapi.AddonSpec{
Name: fi.String(key),
Version: fi.String(versions[id]),
Selector: networkingSelector,
Manifest: fi.String(location),
KubernetesVersion: ">=1.16.0",
Id: id,
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,18 @@ spec:
role.kubernetes.io/networking: "1"
version: 1.5.0-kops.2
- id: k8s-1.12
kubernetesVersion: '>=1.12.0'
kubernetesVersion: '>=1.12.0 <1.16.0'
manifest: networking.amazon-vpc-routed-eni/k8s-1.12.yaml
manifestHash: 7b91bf39d562157bd45b6a29e5f58d817c6ea4e1
name: networking.amazon-vpc-routed-eni
selector:
role.kubernetes.io/networking: "1"
version: 1.5.5-kops.1
- id: k8s-1.16
kubernetesVersion: '>=1.16.0'
manifest: networking.amazon-vpc-routed-eni/k8s-1.16.yaml
manifestHash: ff9687c4431781c50257b44a9610765e52d0f137
name: networking.amazon-vpc-routed-eni
selector:
role.kubernetes.io/networking: "1"
version: 1.6.0-kops.1

0 comments on commit 7a4e6ac

Please sign in to comment.